Sha256: 52ba2815536ae0dfbcd951d6ff429109901e781d9fff94b1393109f0e1c9e4a7
Contents?: true
Size: 467 Bytes
Versions: 4
Compression:
Stored size: 467 Bytes
Contents
# frozen_string_literal: true require_relative "../helper" module Arel module Nodes describe "True" do describe "equality" do it "is equal to other true nodes" do array = [True.new, True.new] assert_equal 1, array.uniq.size end it "is not equal with other nodes" do array = [True.new, Node.new] assert_equal 2, array.uniq.size end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems