diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2010-07-30 14:12:01 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2010-07-30 14:12:01 -0700 |
commit | 834e304b223723d63596034ef338d9af6655d35b (patch) | |
tree | 68d923622ba25e83988069b6bc273d7ca7489796 /activerecord/test/cases | |
parent | ecfb252e7a99bac6569f744064ef7f1ee1b31556 (diff) | |
download | rails-834e304b223723d63596034ef338d9af6655d35b.tar.gz rails-834e304b223723d63596034ef338d9af6655d35b.tar.bz2 rails-834e304b223723d63596034ef338d9af6655d35b.zip |
reverting where() functionality, adding a test
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r-- | activerecord/test/cases/relations_test.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/test/cases/relations_test.rb b/activerecord/test/cases/relations_test.rb index cb252d56fe..c9313fe7b6 100644 --- a/activerecord/test/cases/relations_test.rb +++ b/activerecord/test/cases/relations_test.rb @@ -22,6 +22,11 @@ class RelationTest < ActiveRecord::TestCase assert_equal 5, Post.where(:id => post_authors).size end + def test_multivalue_where + posts = Post.where('author_id = ? AND id = ?', 1, 1) + assert_equal 1, posts.to_a.size + end + def test_scoped topics = Topic.scoped assert_kind_of ActiveRecord::Relation, topics |