git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson
2004-11-24 01:04:44 +00:00
commit db045dbbf6
296 changed files with 30881 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
require 'abstract_unit'
class TestRecord < ActiveRecord::Base
end
class TestUnconnectedAdaptor < Test::Unit::TestCase
def setup
@connection = ActiveRecord::Base.remove_connection
end
def teardown
ActiveRecord::Base.establish_connection(@connection)
end
def test_unconnected
assert_raise(ActiveRecord::ConnectionNotEstablished) do
TestRecord.find(1)
end
assert_raise(ActiveRecord::ConnectionNotEstablished) do
TestRecord.new.save
end
end
end