aboutsummaryrefslogtreecommitdiffstats
path: root/spec/active_relation/primitives/attribute_spec.rb
diff options
context:
space:
mode:
authorNick Kallen <nkallen@nick-kallens-computer-2.local>2008-02-11 23:17:45 -0800
committerNick Kallen <nkallen@nick-kallens-computer-2.local>2008-02-11 23:17:45 -0800
commitc910ac7554ad4989c8dd4e942fc14ae78eeddc3d (patch)
tree24727f05d7e8bcde9381f72b767cbc557edc0b30 /spec/active_relation/primitives/attribute_spec.rb
parent0d70ce37e510c83d5fc42f88b04314f40d87fe96 (diff)
downloadrails-c910ac7554ad4989c8dd4e942fc14ae78eeddc3d.tar.gz
rails-c910ac7554ad4989c8dd4e942fc14ae78eeddc3d.tar.bz2
rails-c910ac7554ad4989c8dd4e942fc14ae78eeddc3d.zip
removing unneccessary tests now that attribute lookup is so simple
Diffstat (limited to 'spec/active_relation/primitives/attribute_spec.rb')
-rw-r--r--spec/active_relation/primitives/attribute_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/active_relation/primitives/attribute_spec.rb b/spec/active_relation/primitives/attribute_spec.rb
index ecc9014658..6d0020d5da 100644
--- a/spec/active_relation/primitives/attribute_spec.rb
+++ b/spec/active_relation/primitives/attribute_spec.rb
@@ -18,7 +18,7 @@ module ActiveRelation
end
describe '#bind' do
- it "manufactures an attribute with the relation bindd and self as an ancestor" do
+ it "manufactures an attribute with the relation bound and self as an ancestor" do
derived_relation = @relation.select(@relation[:id].equals(1))
@attribute.bind(derived_relation).should == Attribute.new(derived_relation, @attribute.name, nil, @attribute)
end