test-factory 0.0.1 → 0.0.2
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.
- data/README.md +2 -0
- data/test-factory-0.0.1.gem +0 -0
- data/test-factory.gemspec +1 -1
- metadata +2 -1
data/README.md
CHANGED
|
@@ -8,6 +8,8 @@ This gem contains the basic framework for [dryly](http://en.wikipedia.org/wiki/D
|
|
|
8
8
|
|
|
9
9
|
Use it to abstract away from the underlying [Watir](http://www.watir.com) code and create your own [DSL](http://en.wikipedia.org/wiki/Domain_specific_language).
|
|
10
10
|
|
|
11
|
+
Tremendous thanks is due to [Alister Scott](http://watirmelon.com), whose [custom page object code](https://github.com/alisterscott/wmf-custom-page-object) for the Wikimedia Foundation provided the inspiration for this gem.
|
|
12
|
+
|
|
11
13
|
How to Start
|
|
12
14
|
------------
|
|
13
15
|
|
|
Binary file
|
data/test-factory.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
spec = Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'test-factory'
|
|
3
|
-
s.version = '0.0.
|
|
3
|
+
s.version = '0.0.2'
|
|
4
4
|
s.summary = %q{rSmart's framework for creating automated testing scripts}
|
|
5
5
|
s.description = %q{This gem provides a set of modules and methods to help quickly and DRYly create a test automation framework using Ruby and Watir (or watir-webdriver).}
|
|
6
6
|
s.files = Dir.glob("**/**/**")
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: test-factory
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -43,6 +43,7 @@ files:
|
|
|
43
43
|
- lib/test-factory/string_factory.rb
|
|
44
44
|
- lib/test-factory.rb
|
|
45
45
|
- README.md
|
|
46
|
+
- test-factory-0.0.1.gem
|
|
46
47
|
- test-factory.gemspec
|
|
47
48
|
homepage: https://github.com/rSmart
|
|
48
49
|
licenses: []
|