aboutsummaryrefslogtreecommitdiffstats
path: root/spec/algebra/unit/primitives/expression_spec.rb
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2010-03-12 14:46:37 -0800
committerCarl Lerche <carllerche@mac.com>2010-03-12 14:46:37 -0800
commite13420c86afb5c31e90cff800f121bd49255b939 (patch)
tree7089d188061b2a676143add52227e107a5cf9b45 /spec/algebra/unit/primitives/expression_spec.rb
parent0b8b87fb947a746d4e58d11ea73ef20cfb23f576 (diff)
downloadrails-e13420c86afb5c31e90cff800f121bd49255b939.tar.gz
rails-e13420c86afb5c31e90cff800f121bd49255b939.tar.bz2
rails-e13420c86afb5c31e90cff800f121bd49255b939.zip
We're obviously writing specs for arel. No need for a sub directory.
Diffstat (limited to 'spec/algebra/unit/primitives/expression_spec.rb')
-rw-r--r--spec/algebra/unit/primitives/expression_spec.rb45
1 files changed, 45 insertions, 0 deletions
diff --git a/spec/algebra/unit/primitives/expression_spec.rb b/spec/algebra/unit/primitives/expression_spec.rb
new file mode 100644
index 0000000000..ac932ed139
--- /dev/null
+++ b/spec/algebra/unit/primitives/expression_spec.rb
@@ -0,0 +1,45 @@
+require 'spec_helper'
+
+module Arel
+ describe Expression do
+ before do
+ @relation = Table.new(:users)
+ @attribute = @relation[:id]
+ end
+
+ describe "#inspect" do
+ it "returns a simple, short inspect string" do
+ @attribute.count.inspect.should == "<Arel::Count <Attribute id>>"
+ end
+ end
+
+ describe Expression::Transformations do
+ before do
+ @expression = Count.new(@attribute)
+ end
+
+ describe '#bind' do
+ it "manufactures an attribute with a rebound relation and self as the ancestor" do
+ derived_relation = @relation.where(@relation[:id].eq(1))
+ @expression.bind(derived_relation).should == Count.new(@attribute.bind(derived_relation), nil, @expression)
+ end
+
+ it "returns self if the substituting to the same relation" do
+ @expression.bind(@relation).should == @expression
+ end
+ end
+
+ describe '#as' do
+ it "manufactures an aliased expression" do
+ @expression.as(:alias).should == Expression.new(@attribute, :alias, @expression)
+ end
+ end
+
+ describe '#to_attribute' do
+ it "manufactures an attribute with the expression as an ancestor" do
+ @expression.to_attribute(@relation).should == Attribute.new(@relation, @expression.alias, :ancestor => @expression)
+ end
+ end
+ end
+ end
+end