Added failing test

This commit is contained in:
Enric Lluelles 2012-01-23 20:51:08 +01:00
parent 9e75660e10
commit ab4e7256bb

View File

@ -53,6 +53,18 @@ describe Rack::LiveReload do
end end
end end
context 'unknown Content-Type' do
let(:ret) { [ 200, {}, [ 'hey ho' ] ] }
before do
app.stubs(:call).with(env).returns(ret)
end
it 'should not break' do
middleware.call(env).should_not raise_error(NoMethodError, /You have a nil object/)
end
end
context 'text/html' do context 'text/html' do
before do before do
app.stubs(:call).with(env).returns([ 200, { 'Content-Type' => 'text/html', 'Content-Length' => 0 }, [ '<head></head>' ] ]) app.stubs(:call).with(env).returns([ 200, { 'Content-Type' => 'text/html', 'Content-Length' => 0 }, [ '<head></head>' ] ])