aboutsummaryrefslogtreecommitdiffstats
path: root/spec/algebra
diff options
context:
space:
mode:
Diffstat (limited to 'spec/algebra')
-rw-r--r--spec/algebra/unit/relations/relation_spec.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/spec/algebra/unit/relations/relation_spec.rb b/spec/algebra/unit/relations/relation_spec.rb
index 1219f80bc3..07a7dcb843 100644
--- a/spec/algebra/unit/relations/relation_spec.rb
+++ b/spec/algebra/unit/relations/relation_spec.rb
@@ -122,7 +122,10 @@ module Arel
describe '#order' do
it "manufactures an order relation" do
- @relation.order(@attribute1, @attribute2).should == Order.new(@relation, [@attribute1, @attribute2])
+ order = @relation.order(@attribute1, @attribute2)
+ order.relation.should == @relation
+ order.orderings.should == [@attribute1, @attribute2]
+ order.should be_kind_of Order
end
describe 'when given a blank ordering' do