blob: fb022f615f16e36f64ae7013bc8ce9c5b7ea4832 (
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
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
|
require 'helper'
module Arel
module Nodes
describe 'equality' do
# FIXME: backwards compat
describe 'backwards compat' do
describe 'operator' do
it 'returns :==' do
attr = Table.new(:users)[:id]
left = attr.eq(10)
left.operator.must_equal :==
end
end
describe 'operand1' do
it "should equal left" do
attr = Table.new(:users)[:id]
left = attr.eq(10)
left.left.must_equal left.operand1
end
end
describe 'operand2' do
it "should equal right" do
attr = Table.new(:users)[:id]
left = attr.eq(10)
left.right.must_equal left.operand2
end
end
describe 'to_sql' do
it 'takes an engine' do
engine = FakeRecord::Base.new
engine.connection.extend Module.new {
attr_accessor :quote_count
def quote(*args) @quote_count += 1; super; end
def quote_column_name(*args) @quote_count += 1; super; end
def quote_table_name(*args) @quote_count += 1; super; end
}
engine.connection.quote_count = 0
attr = Table.new(:users)[:id]
test = attr.eq(10)
test.to_sql engine
engine.connection.quote_count.must_equal 2
end
end
end
describe 'or' do
it 'makes an OR node' do
attr = Table.new(:users)[:id]
left = attr.eq(10)
right = attr.eq(11)
node = left.or right
node.expr.left.must_equal left
node.expr.right.must_equal right
end
end
describe 'and' do
it 'makes and AND node' do
attr = Table.new(:users)[:id]
left = attr.eq(10)
right = attr.eq(11)
node = left.and right
node.left.must_equal left
node.right.must_equal right
end
end
end
end
end
|