mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
2c0fa32088
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1399 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
25 lines
542 B
Ruby
Executable file
25 lines
542 B
Ruby
Executable file
require 'abstract_unit'
|
|
|
|
class TestRecord < ActiveRecord::Base
|
|
end
|
|
|
|
class TestUnconnectedAdaptor < Test::Unit::TestCase
|
|
self.use_transactional_fixtures = false
|
|
|
|
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
|