forked from teamcapybara/capybara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresult_spec.rb
51 lines (42 loc) · 948 Bytes
/
result_spec.rb
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
require 'spec_helper'
describe Capybara::Result do
let :string do
Capybara.string <<-STRING
<ul>
<li>Alpha</li>
<li>Beta</li>
<li>Gamma</li>
<li>Delta</li>
</ul>
STRING
end
let :result do
string.all '//li'
end
it "has a length" do
result.length.should == 4
end
it "has a first element" do
result.first.text == 'Alpha'
end
it "has a last element" do
result.last.text == 'Delta'
end
it "can return an element by its index" do
result.at(1).text.should == 'Beta'
result[2].text.should == 'Gamma'
end
it "can be mapped" do
result.map(&:text).should == %w(Alpha Beta Gamma Delta)
end
it "can be selected" do
result.select do |element|
element.text.include? 't'
end.length.should == 2
end
it "can be reduced" do
result.reduce('') do |memo, element|
memo += element.text[0]
end.should == 'ABGD'
end
end