aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel/unit/relations/group_spec.rb
diff options
context:
space:
mode:
authorNick Kallen <nkallen@nick-kallens-computer-2.local>2008-05-19 13:57:21 -0700
committerNick Kallen <nkallen@nick-kallens-computer-2.local>2008-05-19 13:57:21 -0700
commit518db17ca3dade07fc67b6044b63c826cefb1442 (patch)
tree6a472954f44bbfd2d38198c33517f76a75150785 /spec/arel/unit/relations/group_spec.rb
parent3eae3b08eef84237c201a2f7bfc5292dbbe6951c (diff)
downloadrails-518db17ca3dade07fc67b6044b63c826cefb1442.tar.gz
rails-518db17ca3dade07fc67b6044b63c826cefb1442.tar.bz2
rails-518db17ca3dade07fc67b6044b63c826cefb1442.zip
renamed ion classes
Diffstat (limited to 'spec/arel/unit/relations/group_spec.rb')
-rw-r--r--spec/arel/unit/relations/group_spec.rb32
1 files changed, 32 insertions, 0 deletions
diff --git a/spec/arel/unit/relations/group_spec.rb b/spec/arel/unit/relations/group_spec.rb
new file mode 100644
index 0000000000..a0147b9416
--- /dev/null
+++ b/spec/arel/unit/relations/group_spec.rb
@@ -0,0 +1,32 @@
+require File.join(File.dirname(__FILE__), '..', '..', '..', 'spec_helper')
+
+module Arel
+ describe Group do
+ before do
+ @relation = Table.new(:users)
+ @attribute = @relation[:id]
+ end
+
+ describe '#to_sql' do
+ describe 'when given a predicate' do
+ it "manufactures sql with where clause conditions" do
+ Group.new(@relation, @attribute).to_sql.should be_like("
+ SELECT `users`.`id`, `users`.`name`
+ FROM `users`
+ GROUP BY `users`.`id`
+ ")
+ end
+ end
+
+ describe 'when given a string' do
+ it "passes the string through to the where clause" do
+ Group.new(@relation, 'asdf').to_sql.should be_like("
+ SELECT `users`.`id`, `users`.`name`
+ FROM `users`
+ GROUP BY asdf
+ ")
+ end
+ end
+ end
+ end
+end \ No newline at end of file