page_right 0.4 → 0.4.1
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/CHANGES.md +6 -1
- data/README.md +3 -2
- data/lib/page_right/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d92b143be40fcef537ffad9aae5227c7f7c2100d
|
|
4
|
+
data.tar.gz: c46c20b7af06644391ac87ecac082e355225effb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5d5bdc257ef4dab26d30a0cd80875c6dbf0e0883fc49e5754b1cc6cb67ce71a49379d444ecce0b5f55d683b13cc938ca9353173e6c516abf4a6337765f538601
|
|
7
|
+
data.tar.gz: 5a5c5d217049762ce7ced4406074461777b2862145b2e76cf0249a41e2b74c89c2e16ce10e28e089443c04ea0fb311c4956d584d436556ef4aec75c472636f83
|
data/CHANGES.md
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
## PageRight Gem - Checks the content of your rendered web pages. `Currently under development !!`
|
|
2
2
|
|
|
3
|
-
Version 0.4 20th November 2014
|
|
3
|
+
Version 0.4.1 20th November 2014
|
|
4
4
|
|
|
5
5
|
A very simple gem that contains a few helper/wrapper methods utilising Capybara to aid testing the contents of a rendered web page when writing integration tests.
|
|
6
6
|
|
|
@@ -16,7 +16,7 @@ Include it in your Gemfile.
|
|
|
16
16
|
gem 'page_right'
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
Then require it in
|
|
19
|
+
Then require it in your `test_helper.rb` file.
|
|
20
20
|
|
|
21
21
|
```ruby
|
|
22
22
|
require 'page_right'
|
|
@@ -56,6 +56,7 @@ Check `This text` is within a class called `named-class`.
|
|
|
56
56
|
|
|
57
57
|
```ruby
|
|
58
58
|
text_in_section('#named-id', 'Your text here', false)
|
|
59
|
+
```
|
|
59
60
|
|
|
60
61
|
Check `This text` is not within any id called `named-id`
|
|
61
62
|
|
data/lib/page_right/version.rb
CHANGED