aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel/algebra/unit/primitives/attribute_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/arel/algebra/unit/primitives/attribute_spec.rb')
-rw-r--r--spec/arel/algebra/unit/primitives/attribute_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/arel/algebra/unit/primitives/attribute_spec.rb b/spec/arel/algebra/unit/primitives/attribute_spec.rb
index afcf1237e0..2ca63ba48e 100644
--- a/spec/arel/algebra/unit/primitives/attribute_spec.rb
+++ b/spec/arel/algebra/unit/primitives/attribute_spec.rb
@@ -169,13 +169,13 @@ module Arel
describe Attribute::Orderings do
describe '#asc' do
it 'manufactures an ascending ordering' do
- pending
+ @attribute.asc.should == Ascending.new(@attribute)
end
end
describe '#desc' do
it 'manufactures a descending ordering' do
- pending
+ @attribute.desc.should == Descending.new(@attribute)
end
end
end