aboutsummaryrefslogtreecommitdiffstats
path: root/spec/engines
diff options
context:
space:
mode:
authorErnie Miller <ernie@metautonomo.us>2010-05-05 14:12:22 -0400
committerErnie Miller <ernie@metautonomo.us>2010-05-07 13:09:00 -0400
commit6249e5822a105719a09b7ccebc14336f37a8917c (patch)
tree07340df46650329bb96326ca45cbedbc8a6522dd /spec/engines
parent0f68c734b1642c4960778f8924d2c752717e2790 (diff)
downloadrails-6249e5822a105719a09b7ccebc14336f37a8917c.tar.gz
rails-6249e5822a105719a09b7ccebc14336f37a8917c.tar.bz2
rails-6249e5822a105719a09b7ccebc14336f37a8917c.zip
Tests for ranges with excluded ends and complements
Diffstat (limited to 'spec/engines')
-rw-r--r--spec/engines/sql/unit/predicates/in_spec.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/spec/engines/sql/unit/predicates/in_spec.rb b/spec/engines/sql/unit/predicates/in_spec.rb
index 5d9b2cdcaa..f62ee6e829 100644
--- a/spec/engines/sql/unit/predicates/in_spec.rb
+++ b/spec/engines/sql/unit/predicates/in_spec.rb
@@ -99,6 +99,28 @@ module Arel
end
end
end
+
+ describe 'when relating to a range with an excluded end' do
+ before do
+ @range = 1...3
+ end
+
+ it 'manufactures sql with a >= and <' do
+ sql = In.new(@attribute, @range).to_sql
+
+ adapter_is :mysql do
+ sql.should be_like(%Q{(`users`.`id` >= 1 AND `users`.`id` < 3)})
+ end
+
+ adapter_is :oracle do
+ sql.should be_like(%Q{("USERS"."ID" >= 1 AND "USERS"."ID" < 3)})
+ end
+
+ adapter_is_not :mysql, :oracle do
+ sql.should be_like(%Q{("users"."id" >= 1 AND "users"."id" < 3)})
+ end
+ end
+ end
describe 'when relating to a time range' do
before do