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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# frozen_string_literal: true
require_relative "../helper"
module Arel
module Nodes
describe "Window" do
describe "equality" do
it "is equal with equal ivars" do
window1 = Window.new
window1.orders = [1, 2]
window1.partitions = [1]
window1.frame 3
window2 = Window.new
window2.orders = [1, 2]
window2.partitions = [1]
window2.frame 3
array = [window1, window2]
assert_equal 1, array.uniq.size
end
it "is not equal with different ivars" do
window1 = Window.new
window1.orders = [1, 2]
window1.partitions = [1]
window1.frame 3
window2 = Window.new
window2.orders = [1, 2]
window1.partitions = [1]
window2.frame 4
array = [window1, window2]
assert_equal 2, array.uniq.size
end
end
end
describe "NamedWindow" do
describe "equality" do
it "is equal with equal ivars" do
window1 = NamedWindow.new "foo"
window1.orders = [1, 2]
window1.partitions = [1]
window1.frame 3
window2 = NamedWindow.new "foo"
window2.orders = [1, 2]
window2.partitions = [1]
window2.frame 3
array = [window1, window2]
assert_equal 1, array.uniq.size
end
it "is not equal with different ivars" do
window1 = NamedWindow.new "foo"
window1.orders = [1, 2]
window1.partitions = [1]
window1.frame 3
window2 = NamedWindow.new "bar"
window2.orders = [1, 2]
window2.partitions = [1]
window2.frame 3
array = [window1, window2]
assert_equal 2, array.uniq.size
end
end
end
describe "CurrentRow" do
describe "equality" do
it "is equal to other current row nodes" do
array = [CurrentRow.new, CurrentRow.new]
assert_equal 1, array.uniq.size
end
it "is not equal with other nodes" do
array = [CurrentRow.new, Node.new]
assert_equal 2, array.uniq.size
end
end
end
end
end
|