mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Initial
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
24
activerecord/test/unconnected_test.rb
Executable file
24
activerecord/test/unconnected_test.rb
Executable 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
|
||||
Reference in New Issue
Block a user