2004-11-23 20:04:44 -05:00
|
|
|
require 'abstract_unit'
|
|
|
|
|
|
|
|
class TestRecord < ActiveRecord::Base
|
|
|
|
end
|
|
|
|
|
|
|
|
class TestUnconnectedAdaptor < Test::Unit::TestCase
|
2005-06-10 10:58:02 -04:00
|
|
|
self.use_transactional_fixtures = false
|
2004-11-23 20:04:44 -05:00
|
|
|
|
|
|
|
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
|