blob: e0a5696ea45ac746b58da450ccb3a7d420653e4f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
require 'helper'
describe Arel::Nodes::InsertStatement do
describe "#clone" do
it "clones columns and values" do
statement = Arel::Nodes::InsertStatement.new
statement.columns = %w[a b c]
statement.values = %w[x y z]
dolly = statement.clone
dolly.columns.must_equal statement.columns
dolly.values.must_equal statement.values
dolly.columns.wont_be_same_as statement.columns
dolly.values.wont_be_same_as statement.values
end
end
describe 'equality' do
it 'is equal with equal ivars' do
statement1 = Arel::Nodes::InsertStatement.new
statement1.columns = %w[a b c]
statement1.values = %w[x y z]
statement2 = Arel::Nodes::InsertStatement.new
statement2.columns = %w[a b c]
statement2.values = %w[x y z]
array = [statement1, statement2]
assert_equal 1, array.uniq.size
end
it 'is not equal with different ivars' do
statement1 = Arel::Nodes::InsertStatement.new
statement1.columns = %w[a b c]
statement1.values = %w[x y z]
statement2 = Arel::Nodes::InsertStatement.new
statement2.columns = %w[a b c]
statement2.values = %w[1 2 3]
array = [statement1, statement2]
assert_equal 2, array.uniq.size
end
end
end
|