From 6032d40c1d1c7a7681f145c30b4c26386395ba45 Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Fri, 10 Sep 2010 11:39:50 -0700 Subject: added greater than or equal to node --- spec/arel/attributes/attribute_spec.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'spec/arel') diff --git a/spec/arel/attributes/attribute_spec.rb b/spec/arel/attributes/attribute_spec.rb index fb6954dc7e..ee12aa2371 100644 --- a/spec/arel/attributes/attribute_spec.rb +++ b/spec/arel/attributes/attribute_spec.rb @@ -3,6 +3,22 @@ require 'spec_helper' module Arel module Attributes describe 'attribute' do + describe '#gteq' do + it 'should create a GreaterThanOrEqual node' do + relation = Table.new(:users) + relation[:id].gteq(10).should be_kind_of Nodes::GreaterThanOrEqual + end + + it 'should generate >= in sql' do + relation = Table.new(:users) + mgr = relation.project relation[:id] + mgr.where relation[:id].gteq(10) + mgr.to_sql.should be_like %{ + SELECT "users"."id" FROM "users" WHERE "users"."id" >= 10 + } + end + end + describe '#average' do it 'should create a AVG node' do relation = Table.new(:users) -- cgit v1.2.3