require File.dirname(__FILE__) + '/../spec_helper'
describe Response, 'performance' do
before do
@response = Response.new
@response.body = ''
end
it "should be fast" do
@response.body << <<-EOS
Dir listing
Listing stuff
#{'
Hi!
' * 100}
EOS
proc { @response.each { |l| l } }.should be_faster_then(0.00011)
end
end