aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel/nodes/update_statement_spec.rb
blob: 438eaf1dc254091ba1df087c8e81d7ebdb759cec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'spec_helper'

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

      statement.wheres.each_with_index do |o, j|
        o.should_receive(:clone).and_return("#{o}#{j}")
      end
      statement.values.each_with_index do |o, j|
        o.should_receive(:clone).and_return("#{o}#{j}")
      end

      dolly = statement.clone
      dolly.wheres.should == %w[a0 b1 c2]
      dolly.values.should == %w[x0 y1 z2]
    end
  end
end