test-page 1.0.0 → 1.0.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 +4 -0
- data/README.md +3 -3
- data/lib/test/page/version.rb +1 -1
- data/test-page.gemspec +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dd11cd1616b7603ec16ac8938517551b868d5df8
|
|
4
|
+
data.tar.gz: 8010024851ef200b354f5020b3627082e84bac07
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 21a6fb78226c8e55b891bffb883eac08ae4c0266297ec182af7b7e78f87e684c54edb1f4ea79aef6e838cbd173996c6868ca5a0c35b02ea219971436ba9dd92d
|
|
7
|
+
data.tar.gz: d47187fdd18c45aaf6d2fc12a22953b9696bb0dfe4b66def9064817104f66c553f2fad5a3781a10313363782c73cc8a9c0d943f6441d530951e9f3308ab6c792
|
data/CHANGES.md
CHANGED
data/README.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
#
|
|
1
|
+
# test-page
|
|
2
2
|
[](http://badge.fury.io/rb/test-page)
|
|
3
3
|
[](http://travis-ci.org/jarmo/test-page)
|
|
4
4
|
[](https://coveralls.io/r/jarmo/test-page)
|
|
5
5
|
[](https://gemnasium.com/jarmo/test-page)
|
|
6
6
|
[](https://codeclimate.com/github/jarmo/test-page)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
test-page helps you to write easily maintainable integration tests by implementing [Page Objects](https://code.google.com/p/selenium/wiki/PageObjects) pattern.
|
|
9
9
|
|
|
10
10
|
Page Objects may be objects representing whole pages like LoginPage, ProfilePage or part of the pages like LoginForm, Header etc.
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
test-page can be described like:
|
|
13
13
|
|
|
14
14
|
* Is framework agnostic - you can use it with any library you want - [Watir](http://watir.com), [Selenium](http://seleniumhq.org/), [Capybara](https://github.com/jnicklas/capybara) etc.
|
|
15
15
|
* Has really [easy API](http://rubydoc.info/github/jarmo/test-page/frames) - you can start testing right away instead of spending too much time to learn new framework.
|
data/lib/test/page/version.rb
CHANGED
data/test-page.gemspec
CHANGED
|
@@ -4,8 +4,8 @@ require File.expand_path('../lib/test/page/version', __FILE__)
|
|
|
4
4
|
Gem::Specification.new do |gem|
|
|
5
5
|
gem.authors = ["Jarmo Pertman"]
|
|
6
6
|
gem.email = ["jarmo.p@gmail.com"]
|
|
7
|
-
gem.description = %q{
|
|
8
|
-
gem.summary = %q{
|
|
7
|
+
gem.description = %q{test-page helps you to write easily maintainable integration tests by using Watir, Selenium or any other testing library.}
|
|
8
|
+
gem.summary = %q{test-page helps you to write easily maintainable integration tests by using Watir, Selenium or any other testing library.}
|
|
9
9
|
gem.homepage = "https://github.com/jarmo/test-page"
|
|
10
10
|
|
|
11
11
|
gem.files = `git ls-files`.split($\)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: test-page
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jarmo Pertman
|
|
@@ -80,7 +80,7 @@ dependencies:
|
|
|
80
80
|
- - '>='
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0'
|
|
83
|
-
description:
|
|
83
|
+
description: test-page helps you to write easily maintainable integration tests by
|
|
84
84
|
using Watir, Selenium or any other testing library.
|
|
85
85
|
email:
|
|
86
86
|
- jarmo.p@gmail.com
|
|
@@ -130,7 +130,7 @@ rubyforge_project:
|
|
|
130
130
|
rubygems_version: 2.0.7
|
|
131
131
|
signing_key:
|
|
132
132
|
specification_version: 4
|
|
133
|
-
summary:
|
|
133
|
+
summary: test-page helps you to write easily maintainable integration tests by using
|
|
134
134
|
Watir, Selenium or any other testing library.
|
|
135
135
|
test_files:
|
|
136
136
|
- spec/spec_helper.rb
|