|
2 | 2 |
|
3 | 3 | describe Browser::DOM::Builder do
|
4 | 4 | it 'builds an element' do
|
5 |
| - DOM { |
| 5 | + expect(DOM { |
6 | 6 | div
|
7 |
| - }.name.should == 'DIV' |
| 7 | + }.name).to eq('DIV') |
8 | 8 | end
|
9 | 9 |
|
10 | 10 | it 'builds an element with text content' do
|
11 |
| - DOM { |
| 11 | + expect(DOM { |
12 | 12 | div "foo bar"
|
13 |
| - }.text.should == "foo bar" |
| 13 | + }.text).to eq('foo bar') |
14 | 14 |
|
15 |
| - DOM { |
| 15 | + expect(DOM { |
16 | 16 | div {
|
17 | 17 | "foo bar"
|
18 | 18 | }
|
19 |
| - }.text.should == "foo bar" |
| 19 | + }.text).to eq('foo bar') |
20 | 20 | end
|
21 | 21 |
|
22 | 22 | it 'builds an element with attributes' do
|
23 |
| - DOM { |
| 23 | + expect(DOM { |
24 | 24 | div class: :wut
|
25 |
| - }.class_name.should == :wut |
| 25 | + }.class_name).to eq(:wut) |
26 | 26 | end
|
27 | 27 |
|
28 | 28 | it 'builds deeper trees' do
|
|
34 | 34 | }
|
35 | 35 | }
|
36 | 36 |
|
37 |
| - res.name.should == 'DIV' |
38 |
| - res.child.name.should == 'SPAN' |
39 |
| - res.child.text.should == 'wut' |
| 37 | + expect(res.name).to eq('DIV') |
| 38 | + expect(res.child.name).to eq('SPAN') |
| 39 | + expect(res.child.text).to eq('wut') |
40 | 40 | end
|
41 | 41 |
|
42 | 42 | it 'sets classes with methods' do
|
43 |
| - DOM { |
| 43 | + expect(DOM { |
44 | 44 | div.nice.element
|
45 |
| - }.class_names.should == %w[nice element] |
| 45 | + }.class_names).to eq(%w[nice element]) |
46 | 46 | end
|
47 | 47 |
|
48 | 48 | it 'nests when setting classes' do
|
|
52 | 52 | }
|
53 | 53 | }
|
54 | 54 |
|
55 |
| - res.name.should == 'DIV' |
56 |
| - res.class_names.should == %w[nice element] |
57 |
| - res.child.name.should == 'SPAN' |
58 |
| - res.child.class_names.should == %w[nicer] |
| 55 | + expect(res.name).to eq('DIV') |
| 56 | + expect(res.class_names).to eq(%w[nice element]) |
| 57 | + expect(res.child.name).to eq('SPAN') |
| 58 | + expect(res.child.class_names).to eq(%w[nicer]) |
59 | 59 | end
|
60 | 60 |
|
61 | 61 | it 'joins class name properly' do
|
62 | 62 | res = DOM {
|
63 | 63 | i.icon[:legal]
|
64 | 64 | }
|
65 | 65 |
|
66 |
| - res.name.should == 'I' |
67 |
| - res.class_names.should == %w[icon-legal] |
| 66 | + expect(res.name).to eq('I') |
| 67 | + expect(res.class_names).to eq(%w[icon-legal]) |
68 | 68 | end
|
69 | 69 | end
|
0 commit comments