Sha256: c70a4a712ef58bac4b40bc6a4b1b779476e9234f51746ccfabf94c632d74f2b6
Contents?: true
Size: 1.11 KB
Versions: 5
Compression:
Stored size: 1.11 KB
Contents
# 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
Version data entries
5 entries across 5 versions & 1 rubygems