aboutsummaryrefslogtreecommitdiffstats
path: root/spec/algebra/unit/relations/where_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/algebra/unit/relations/where_spec.rb')
-rw-r--r--spec/algebra/unit/relations/where_spec.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/algebra/unit/relations/where_spec.rb b/spec/algebra/unit/relations/where_spec.rb
index 96b95b5823..48a8dc5038 100644
--- a/spec/algebra/unit/relations/where_spec.rb
+++ b/spec/algebra/unit/relations/where_spec.rb
@@ -9,6 +9,7 @@ module Arel
describe '#initialize' do
it "manufactures nested where relations if multiple predicates are provided" do
+ pending "This is not true anymore"
another_predicate = @relation[:name].lt(2)
Where.new(@relation, @predicate, another_predicate). \
should == Where.new(Where.new(@relation, another_predicate), @predicate)