fixing whitespace errors

This commit is contained in:
Aaron Patterson 2010-07-16 13:50:58 -07:00
parent ef165b355d
commit 2244bb0013
1 changed files with 4 additions and 4 deletions

View File

@ -5,21 +5,21 @@ class ConnectionManagementTest < ActiveRecord::TestCase
@env = {}
@app = stub('App')
@management = ActiveRecord::ConnectionAdapters::ConnectionManagement.new(@app)
@connections_cleared = false
ActiveRecord::Base.stubs(:clear_active_connections!).with { @connections_cleared = true }
end
test "clears active connections after each call" do
@app.expects(:call).with(@env)
@management.call(@env)
assert @connections_cleared
end
test "doesn't clear active connections when running in a test case" do
@env['rack.test'] = true
@app.expects(:call).with(@env)
@management.call(@env)
assert !@connections_cleared
end
end
end