diff options
author | Nick Kallen <nkallen@nick-kallens-computer-2.local> | 2007-12-30 13:22:31 -0800 |
---|---|---|
committer | Nick Kallen <nkallen@nick-kallens-computer-2.local> | 2007-12-30 13:22:31 -0800 |
commit | f9cc8bba39b1deb6b3f70cecb96beaf988054915 (patch) | |
tree | de8bc118ee34c5870f0175c05298f9ab39250617 /spec/predicates | |
parent | 960bbcb3ce4a82cf4f031d1c6682ce4c1a04474d (diff) | |
download | rails-f9cc8bba39b1deb6b3f70cecb96beaf988054915.tar.gz rails-f9cc8bba39b1deb6b3f70cecb96beaf988054915.tar.bz2 rails-f9cc8bba39b1deb6b3f70cecb96beaf988054915.zip |
various
Diffstat (limited to 'spec/predicates')
-rw-r--r-- | spec/predicates/binary_predicate_spec.rb | 6 |
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 |