diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2011-06-21 07:49:30 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-06-21 07:49:30 -0700 |
commit | 645afa0c08af21381b63831e8f488a186a6ad9b0 (patch) | |
tree | 8caaa5ad9018fe61c838907cd0854a68a55f91cd /test/nodes/test_ascending.rb | |
parent | 593002080cbcbb6e14acf3bc909aab819811f215 (diff) | |
parent | ba3578a22f824da3478b6dceb100deb9f41a56e9 (diff) | |
download | rails-645afa0c08af21381b63831e8f488a186a6ad9b0.tar.gz rails-645afa0c08af21381b63831e8f488a186a6ad9b0.tar.bz2 rails-645afa0c08af21381b63831e8f488a186a6ad9b0.zip |
Merge pull request #64 from ernie/reverse_ordering
Allow reversal of orderings
Diffstat (limited to 'test/nodes/test_ascending.rb')
-rw-r--r-- | test/nodes/test_ascending.rb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/test/nodes/test_ascending.rb b/test/nodes/test_ascending.rb new file mode 100644 index 0000000000..0e2c4810c6 --- /dev/null +++ b/test/nodes/test_ascending.rb @@ -0,0 +1,34 @@ +require 'helper' + +module Arel + module Nodes + class TestAscending < MiniTest::Unit::TestCase + def test_construct + ascending = Ascending.new 'zomg' + assert_equal 'zomg', ascending.expr + end + + def test_reverse + ascending = Ascending.new 'zomg' + descending = ascending.reverse + assert_kind_of Descending, descending + assert_equal ascending.expr, descending.expr + end + + def test_direction + ascending = Ascending.new 'zomg' + assert_equal :asc, ascending.direction + end + + def test_ascending? + ascending = Ascending.new 'zomg' + assert ascending.ascending? + end + + def test_descending? + ascending = Ascending.new 'zomg' + assert !ascending.descending? + end + end + end +end |