aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel/engines/sql/unit/relations/where_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/arel/engines/sql/unit/relations/where_spec.rb')
-rw-r--r--spec/arel/engines/sql/unit/relations/where_spec.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/spec/arel/engines/sql/unit/relations/where_spec.rb b/spec/arel/engines/sql/unit/relations/where_spec.rb
index 5870b6b793..4f0cce1e01 100644
--- a/spec/arel/engines/sql/unit/relations/where_spec.rb
+++ b/spec/arel/engines/sql/unit/relations/where_spec.rb
@@ -7,14 +7,6 @@ module Arel
@predicate = @relation[:id].eq(1)
end
- describe '#initialize' do
- it "manufactures nested where relations if multiple predicates are provided" do
- another_predicate = @relation[:name].lt(2)
- Where.new(@relation, @predicate, another_predicate). \
- should == Where.new(Where.new(@relation, another_predicate), @predicate)
- end
- end
-
describe '#to_sql' do
describe 'when given a predicate' do
it "manufactures sql with where clause conditions" do