diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-03-04 12:53:15 -0800 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-03-04 12:53:15 -0800 |
commit | da8f6c7af7ea2305618f02378736c013f61646f1 (patch) | |
tree | 58be03c7c513a725fd862881c873ed19967d4f73 /test | |
parent | 518d6b34e863d68b009674a45a1fe5105a38aee1 (diff) | |
parent | 0df9ab8442fc4a33b1962a49cebd66a3d1b0faf5 (diff) | |
download | rails-da8f6c7af7ea2305618f02378736c013f61646f1.tar.gz rails-da8f6c7af7ea2305618f02378736c013f61646f1.tar.bz2 rails-da8f6c7af7ea2305618f02378736c013f61646f1.zip |
Merge pull request #164 from tpope/infinity-ranges
Support Float::INFINITY in ranges
Diffstat (limited to 'test')
-rw-r--r-- | test/visitors/test_to_sql.rb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/test/visitors/test_to_sql.rb b/test/visitors/test_to_sql.rb index 08cf4566d1..d3e4dae963 100644 --- a/test/visitors/test_to_sql.rb +++ b/test/visitors/test_to_sql.rb @@ -230,6 +230,23 @@ module Arel } end + it 'can handle ranges bounded by infinity' do + node = @attr.in 1..Float::INFINITY + @visitor.accept(node).must_be_like %{ + "users"."id" >= 1 + } + node = @attr.in(-Float::INFINITY..3) + @visitor.accept(node).must_be_like %{ + "users"."id" <= 3 + } + node = @attr.in(-Float::INFINITY...3) + @visitor.accept(node).must_be_like %{ + "users"."id" < 3 + } + node = @attr.in(-Float::INFINITY..Float::INFINITY) + @visitor.accept(node).must_be_like %{1=1} + end + it 'can handle subqueries' do table = Table.new(:users) subquery = table.project(:id).where(table[:name].eq('Aaron')) @@ -316,6 +333,23 @@ module Arel } end + it 'can handle ranges bounded by infinity' do + node = @attr.not_in 1..Float::INFINITY + @visitor.accept(node).must_be_like %{ + "users"."id" < 1 + } + node = @attr.not_in(-Float::INFINITY..3) + @visitor.accept(node).must_be_like %{ + "users"."id" > 3 + } + node = @attr.not_in(-Float::INFINITY...3) + @visitor.accept(node).must_be_like %{ + "users"."id" >= 3 + } + node = @attr.not_in(-Float::INFINITY..Float::INFINITY) + @visitor.accept(node).must_be_like %{1=0} + end + it 'can handle subqueries' do table = Table.new(:users) subquery = table.project(:id).where(table[:name].eq('Aaron')) |