aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel/algebra/unit/relations/order_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/arel/algebra/unit/relations/order_spec.rb')
-rw-r--r--spec/arel/algebra/unit/relations/order_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/arel/algebra/unit/relations/order_spec.rb b/spec/arel/algebra/unit/relations/order_spec.rb
index 4f163894c8..8b3c932fb9 100644
--- a/spec/arel/algebra/unit/relations/order_spec.rb
+++ b/spec/arel/algebra/unit/relations/order_spec.rb
@@ -6,6 +6,16 @@ module Arel
@relation = Table.new(:users)
@attribute = @relation[:id]
end
+
+ describe "#==" do
+ it "returns true when the Orders are for the same attribute and direction" do
+ Ascending.new(@attribute).should == Ascending.new(@attribute)
+ end
+
+ it "returns false when the Orders are for a diferent direction" do
+ Ascending.new(@attribute).should_not == Descending.new(@attribute)
+ end
+ end
end
end