Sha256: 67cb76190ae9196720e2478ec2b2e6f007494573ab8f46dcf6cb1ad334bae3a4

Contents?: true

Size: 1.49 KB

Versions: 5

Compression:

Stored size: 1.49 KB

Contents

# frozen_string_literal: true

require_relative "../helper"

describe Arel::Nodes::SelectStatement do
  describe "#clone" do
    it "clones cores" do
      statement = Arel::Nodes::SelectStatement.new %w[a b c]

      dolly = statement.clone
      _(dolly.cores).must_equal      statement.cores
      _(dolly.cores).wont_be_same_as statement.cores
    end
  end

  describe "equality" do
    it "is equal with equal ivars" do
      statement1 = Arel::Nodes::SelectStatement.new %w[a b c]
      statement1.offset = 1
      statement1.limit  = 2
      statement1.lock   = false
      statement1.orders = %w[x y z]
      statement1.with   = "zomg"
      statement2 = Arel::Nodes::SelectStatement.new %w[a b c]
      statement2.offset = 1
      statement2.limit  = 2
      statement2.lock   = false
      statement2.orders = %w[x y z]
      statement2.with   = "zomg"
      array = [statement1, statement2]
      assert_equal 1, array.uniq.size
    end

    it "is not equal with different ivars" do
      statement1 = Arel::Nodes::SelectStatement.new %w[a b c]
      statement1.offset = 1
      statement1.limit  = 2
      statement1.lock   = false
      statement1.orders = %w[x y z]
      statement1.with   = "zomg"
      statement2 = Arel::Nodes::SelectStatement.new %w[a b c]
      statement2.offset = 1
      statement2.limit  = 2
      statement2.lock   = false
      statement2.orders = %w[x y z]
      statement2.with   = "wth"
      array = [statement1, statement2]
      assert_equal 2, array.uniq.size
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ibm_db-5.5.0 test/cases/arel/nodes/select_statement_test.rb
ibm_db-5.4.1 test/cases/arel/nodes/select_statement_test.rb
ibm_db-5.4.0 test/cases/arel/nodes/select_statement_test.rb
ibm_db-5.3.2 test/cases/arel/nodes/select_statement_test.rb
ibm_db-5.3.1 test/cases/arel/nodes/select_statement_test.rb