diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2010-12-03 15:24:30 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2010-12-03 15:24:30 -0800 |
commit | 40603729cc1d9a8e636a887446d051390d15fcd8 (patch) | |
tree | 569e33bb28ec536341505487e6a3c3fdde0e9153 /test/attributes | |
parent | dbc1f65244ac0b75f746ea91289f2e36ced435a6 (diff) | |
download | rails-40603729cc1d9a8e636a887446d051390d15fcd8.tar.gz rails-40603729cc1d9a8e636a887446d051390d15fcd8.tar.bz2 rails-40603729cc1d9a8e636a887446d051390d15fcd8.zip |
attributes do not need a column member
Diffstat (limited to 'test/attributes')
-rw-r--r-- | test/attributes/test_attribute.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/attributes/test_attribute.rb b/test/attributes/test_attribute.rb index 06954c242b..df7dc69621 100644 --- a/test/attributes/test_attribute.rb +++ b/test/attributes/test_attribute.rb @@ -326,7 +326,7 @@ module Arel describe '#eq' do it 'should return an equality node' do - attribute = Attribute.new nil, nil, nil + attribute = Attribute.new nil, nil equality = attribute.eq 1 equality.left.must_equal attribute equality.right.must_equal 1 @@ -485,7 +485,7 @@ module Arel end it 'should return an in node' do - attribute = Attribute.new nil, nil, nil + attribute = Attribute.new nil, nil node = Nodes::In.new attribute, [1,2,3] node.left.must_equal attribute node.right.must_equal [1, 2, 3] @@ -538,7 +538,7 @@ module Arel end it 'should return a NotIn node' do - attribute = Attribute.new nil, nil, nil + attribute = Attribute.new nil, nil node = Nodes::NotIn.new attribute, [1,2,3] node.left.must_equal attribute node.right.must_equal [1, 2, 3] |