I've forked csv_builder to support a @streaming parameter. When streaming, the template handler uses a block like this:
Enumerator.new do |output|
output.write("writing some data")
end
I've verified that templates render properly, in terms of the content being correct, but I want to verify that data is streamed, rather than returned in one shot. One idea I had was to generate an enormous file inside a template. When I did this in an rspec test, it indeed takes a few minutes, but it passes when the template returns data in one shot.