spec/supernova/condition_spec.rb in supernova-0.6.2 vs spec/supernova/condition_spec.rb in supernova-0.6.3
- old
+ new
@@ -14,9 +14,17 @@
it "returns the correct filter for numbers" do
:user_id.ne.solr_filter_for(7).should == "!user_id:7"
end
+ it "returns the correct filter for nin" do
+ :user_id.nin.solr_filter_for([1, 2, 3]).should == "!(user_id:1 OR user_id:2 OR user_id:3)"
+ end
+
+ it "returns the correct filter for nin" do
+ :user_id.in.solr_filter_for([1, 2, 3]).should == "user_id:1 OR user_id:2 OR user_id:3"
+ end
+
it "returns the correct filter for not nil" do
:user_id.not.solr_filter_for(nil).should == "user_id:[* TO *]"
end
it "returns the correct filter for gt" do