aboutsummaryrefslogtreecommitdiffstats
path: root/spec/predicates
diff options
context:
space:
mode:
authorNick Kallen <nkallen@nick-kallens-computer-2.local>2007-12-30 13:22:31 -0800
committerNick Kallen <nkallen@nick-kallens-computer-2.local>2007-12-30 13:22:31 -0800
commitf9cc8bba39b1deb6b3f70cecb96beaf988054915 (patch)
treede8bc118ee34c5870f0175c05298f9ab39250617 /spec/predicates
parent960bbcb3ce4a82cf4f031d1c6682ce4c1a04474d (diff)
downloadrails-f9cc8bba39b1deb6b3f70cecb96beaf988054915.tar.gz
rails-f9cc8bba39b1deb6b3f70cecb96beaf988054915.tar.bz2
rails-f9cc8bba39b1deb6b3f70cecb96beaf988054915.zip
various
Diffstat (limited to 'spec/predicates')
-rw-r--r--spec/predicates/binary_predicate_spec.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/predicates/binary_predicate_spec.rb b/spec/predicates/binary_predicate_spec.rb
index 1be7dd067d..58e395b08d 100644
--- a/spec/predicates/binary_predicate_spec.rb
+++ b/spec/predicates/binary_predicate_spec.rb
@@ -8,6 +8,12 @@ describe BinaryPredicate do
@attribute2 = Attribute.new(@relation2, :attribute_name)
end
+ describe BinaryPredicate, '#initialize' do
+ it "requires that both columns come from the same relation" do
+ pending
+ end
+ end
+
describe BinaryPredicate, '==' do
before do
class ConcreteBinaryPredicate < BinaryPredicate