test-factory 0.4.1 → 0.4.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.
- checksums.yaml +8 -8
- data/lib/test-factory/data_factory.rb +1 -1
- data/test-factory.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ODUxNjgzOGE5NDBjM2ViYzliZDAyZjhhZmM0YzFkNThiMWJlY2NjYg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZTNmZGUxYTE1NGFmNDBmY2FiNDlmNzMyOWYzMTI0NmUwNmE4NWNiNA==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZGU5ZDcxZGVjOWU3MDU0MDIwMjZmYWI3MDdlZWRhMzc3OTdlYjdhZjVhNDUw
|
|
10
|
+
NWVjNGQ5MDQzNDI2ODA2MTMwZTVlNTNkOGZiYzIxMzY3YTFiNWUyYzkwODBm
|
|
11
|
+
YmU1MTEzOWY3ZTUxYjE0NGRmZTU4NzAyZDc4NmFiZDc4YjQyMjg=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MDBiZTI5ZjIzMTk2ODdmNmIxNmExYmZmMTkzN2UyYTljYmU2YjU2ZDUwYzg3
|
|
14
|
+
ZDM5Y2ZhN2U2YWFmNzU1ZjhjMzhlOTJjZDJlNGYyNjFiYWU5NDhiZDljZDg0
|
|
15
|
+
YzI3YTk2OWY1ZGNiZmU0MDFmNjA4NWRhNDUxYTkyNmU3ODk0N2M=
|
|
@@ -266,7 +266,7 @@ module DataFactory
|
|
|
266
266
|
|
|
267
267
|
# Do not use this method directly.
|
|
268
268
|
#
|
|
269
|
-
def parse_fields(opts, name, page, fields)
|
|
269
|
+
def parse_fields(opts, name, page, *fields)
|
|
270
270
|
fields.each do |field|
|
|
271
271
|
lmnt = page.send(*[field, name].compact)
|
|
272
272
|
var = opts.nil? ? instance_variable_get("@#{field}") : opts[field]
|
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.4.
|
|
3
|
+
s.version = '0.4.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("**/**/**")
|