Sha256: b9155a3685a71e5a4a3e8cd68ec98542b8aeb0076784dfe173d717b702431ddd

Contents?: true

Size: 802 Bytes

Versions: 116

Compression:

Stored size: 802 Bytes

Contents

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

Version data entries

116 entries across 98 versions & 14 rubygems

Version Path
dirty_history-0.4.10 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_ascending.rb
dirty_history-0.4.9 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_ascending.rb
arel-3.0.0.rc1 test/nodes/test_ascending.rb
dirty_history-0.4.8 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_ascending.rb
dirty_history-0.4.7 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_ascending.rb
dirty_history-0.4.6 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_ascending.rb
dirty_history-0.4.5 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_ascending.rb
dirty_history-0.4.4 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_ascending.rb
dirty_history-0.4.3 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_ascending.rb
dirty_history-0.4.2 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_ascending.rb
dirty_history-0.3.0 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_ascending.rb
arel-2.2.1 test/nodes/test_ascending.rb
arel-2.2.0 test/nodes/test_ascending.rb
arel-2.1.4 test/nodes/test_ascending.rb
arel-2.1.3 test/nodes/test_ascending.rb
arel-2.1.2 test/nodes/test_ascending.rb