aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/arel/nodes/unary_operation_test.rb
blob: f0dd0c625c6805b0923c2a1591e917bd4971dc89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# frozen_string_literal: true

require_relative "../helper"

module Arel
  module Nodes
    class TestUnaryOperation < Arel::Test
      def test_construct
        operation = UnaryOperation.new :-, 1
        assert_equal :-, operation.operator
        assert_equal 1, operation.expr
      end

      def test_operation_alias
        operation = UnaryOperation.new :-, 1
        aliaz = operation.as("zomg")
        assert_kind_of As, aliaz
        assert_equal operation, aliaz.left
        assert_equal "zomg", aliaz.right
      end

      def test_operation_ordering
        operation = UnaryOperation.new :-, 1
        ordering = operation.desc
        assert_kind_of Descending, ordering
        assert_equal operation, ordering.expr
        assert ordering.descending?
      end

      def test_equality_with_same_ivars
        array = [UnaryOperation.new(:-, 1), UnaryOperation.new(:-, 1)]
        assert_equal 1, array.uniq.size
      end

      def test_inequality_with_different_ivars
        array = [UnaryOperation.new(:-, 1), UnaryOperation.new(:-, 2)]
        assert_equal 2, array.uniq.size
      end
    end
  end
end