aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel/unit
diff options
context:
space:
mode:
authorNick Kallen <nkallen@nick-kallens-computer-2.local>2008-05-16 14:43:27 -0700
committerNick Kallen <nkallen@nick-kallens-computer-2.local>2008-05-16 14:43:27 -0700
commit6064001d642fdbd18cdfe2aafc1f17e8fb248bd1 (patch)
tree9a38ec9525a9f81eb09d873adcc87b0e1fcc2f96 /spec/arel/unit
parent6c173acf0a2ccc4907cf55709def5752f59d0167 (diff)
downloadrails-6064001d642fdbd18cdfe2aafc1f17e8fb248bd1.tar.gz
rails-6064001d642fdbd18cdfe2aafc1f17e8fb248bd1.tar.bz2
rails-6064001d642fdbd18cdfe2aafc1f17e8fb248bd1.zip
additional test coverage for some random complex case
Diffstat (limited to 'spec/arel/unit')
-rw-r--r--spec/arel/unit/primitives/expression_spec.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/arel/unit/primitives/expression_spec.rb b/spec/arel/unit/primitives/expression_spec.rb
index 8a990231f6..ace439b952 100644
--- a/spec/arel/unit/primitives/expression_spec.rb
+++ b/spec/arel/unit/primitives/expression_spec.rb
@@ -14,6 +14,7 @@ module Arel
describe '#bind' do
it "manufactures an attribute with a rebound relation and self as the ancestor" do
+ pending
derived_relation = @relation.select(@relation[:id].eq(1))
@expression.bind(derived_relation).should == Expression.new(@attribute.bind(derived_relation), "COUNT", nil, @expression)
end