aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorSteven Soroka <ssoroka78@gmail.com>2008-05-01 14:09:12 -0500
committerDavid Heinemeier Hansson <david@loudthinking.com>2008-05-01 14:22:55 -0500
commit9c20391bbe6ec1c56f8c8ed4aefb31a93576f76a (patch)
treefb66a893a06c0a0f452748d808f10a5d74faf61f /activerecord/test
parentc353794dff580c8aa63b357b2857c1fadff3104b (diff)
downloadrails-9c20391bbe6ec1c56f8c8ed4aefb31a93576f76a.tar.gz
rails-9c20391bbe6ec1c56f8c8ed4aefb31a93576f76a.tar.bz2
rails-9c20391bbe6ec1c56f8c8ed4aefb31a93576f76a.zip
best solution?
Signed-off-by: Steven Soroka <ssoroka78@gmail.com>
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/associations/has_many_through_associations_test.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/activerecord/test/cases/associations/has_many_through_associations_test.rb b/activerecord/test/cases/associations/has_many_through_associations_test.rb
index a9899102d7..e297447c88 100644
--- a/activerecord/test/cases/associations/has_many_through_associations_test.rb
+++ b/activerecord/test/cases/associations/has_many_through_associations_test.rb
@@ -115,6 +115,18 @@ class HasManyThroughAssociationsTest < ActiveRecord::TestCase
assert posts(:thinking).reload.people(true).collect(&:first_name).include?("Jeb")
end
+ def test_associate_with_create_and_no_options
+ peeps = posts(:thinking).people.count
+ posts(:thinking).people.create
+ assert_equal peeps + 1, posts(:thinking).people.count
+ end
+
+ def test_associate_with_create_exclaimation_and_no_options
+ peeps = posts(:thinking).people.count
+ posts(:thinking).people.create!
+ assert_equal peeps + 1, posts(:thinking).people.count
+ end
+
def test_clear_associations
assert_queries(2) { posts(:welcome);posts(:welcome).people(true) }