aboutsummaryrefslogtreecommitdiffstats
path: root/test/nodes/test_update_statement.rb
blob: 8920e977b539e0dcd000eb9f7dc1d52672bd331c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'helper'

describe Arel::Nodes::UpdateStatement do
  describe "#clone" do
    it "clones wheres and values" do
      statement = Arel::Nodes::UpdateStatement.new
      statement.wheres = %w[a b c]
      statement.values = %w[x y z]

      dolly = statement.clone
      dolly.wheres.must_equal statement.wheres
      dolly.wheres.wont_be_same_as statement.wheres

      dolly.values.must_equal statement.values
      dolly.values.wont_be_same_as statement.values
    end
  end
end