aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/inheritance_test.rb
diff options
context:
space:
mode:
authorTobias Lütke <tobias.luetke@gmail.com>2005-10-15 00:46:55 +0000
committerTobias Lütke <tobias.luetke@gmail.com>2005-10-15 00:46:55 +0000
commit70869931611667d5b732ae91704313115e4baa10 (patch)
tree27e1df63f6953b9a8484aaa1859152fa0fb2490e /activerecord/test/inheritance_test.rb
parent64fcb752f2c2f337918f74cd0cc6049a4cafb7a6 (diff)
downloadrails-70869931611667d5b732ae91704313115e4baa10.tar.gz
rails-70869931611667d5b732ae91704313115e4baa10.tar.bz2
rails-70869931611667d5b732ae91704313115e4baa10.zip
Adds :nullify option to :depends. Closes #2015 (Robby Russell)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2595 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/inheritance_test.rb')
-rwxr-xr-xactiverecord/test/inheritance_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/inheritance_test.rb b/activerecord/test/inheritance_test.rb
index 11a2c3d7a9..a3b9ce25ad 100755
--- a/activerecord/test/inheritance_test.rb
+++ b/activerecord/test/inheritance_test.rb
@@ -57,7 +57,7 @@ class InheritanceTest < Test::Unit::TestCase
end
def test_inheritance_condition
- assert_equal 5, Company.count
+ assert_equal 8, Company.count
assert_equal 2, Firm.count
assert_equal 3, Client.count
end