rspec-html-matchers 0.6.1 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/README.md +28 -0
- data/features/support/env.rb +2 -0
- data/lib/rspec-html-matchers.rb +448 -458
- data/spec/spec_helper.rb +2 -0
- metadata +36 -68
- data/spec/fixtures/form.html +0 -140
- data/spec/fixtures/ordered_list.html +0 -9
- data/spec/fixtures/paragraphs.html +0 -3
- data/spec/fixtures/quotes.html +0 -15
- data/spec/fixtures/search_and_submit.html +0 -9
- data/spec/fixtures/single_element.html +0 -1
- data/spec/fixtures/special.html +0 -22
@@ -1 +0,0 @@
|
|
1
|
-
<div class="foo bar"></div>
|
data/spec/fixtures/special.html
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
<table>
|
2
|
-
<tr>
|
3
|
-
<td>user_1</td>
|
4
|
-
<td id="other-special">user_2</td>
|
5
|
-
<td>user_3</td>
|
6
|
-
</tr>
|
7
|
-
<tr>
|
8
|
-
<td>a</td>
|
9
|
-
<td id="special">a</td>
|
10
|
-
<td>a</td>
|
11
|
-
</tr>
|
12
|
-
</table>
|
13
|
-
|
14
|
-
<div class="one">text</div>
|
15
|
-
<div class="one">text</div>
|
16
|
-
<div class="one">text</div>
|
17
|
-
<div class="one">text bla</div>
|
18
|
-
<div class="one">content bla</div>
|
19
|
-
<div class="one">content</div>
|
20
|
-
<div class="two">content bla</div>
|
21
|
-
<div class="two">content</div>
|
22
|
-
<div class="two">text</div>
|