aboutsummaryrefslogtreecommitdiffstats
path: root/spec/shared
diff options
context:
space:
mode:
Diffstat (limited to 'spec/shared')
-rw-r--r--spec/shared/relation_spec.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/shared/relation_spec.rb b/spec/shared/relation_spec.rb
index 5f0ae4b46e..06e8fd2027 100644
--- a/spec/shared/relation_spec.rb
+++ b/spec/shared/relation_spec.rb
@@ -61,12 +61,16 @@ share_examples_for 'A Relation' do
end
it "finds rows with a matches predicate"
+
+ it "finds rows with a not matches predicate"
it "finds rows with an in predicate" do
pending
set = @expected[1..(@expected.length/2+1)]
@relation.all(:id.in => set.map { |r| r.id }).should have_resources(set)
end
+
+ it "finds rows with a not in predicate"
end
describe "#order" do