test-factory 0.3.6 → 0.3.7
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 +3 -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
|
+
MTY5NjI0ZDIyZDMzNjlhMTNmOWFjOWNiOTlhY2NjN2Y5MjEzNGZmNQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
N2VjY2FlYTg5OWZlMDNiNzk3YWI3Mzk0Y2FkMzkyNGNhYTdhNWEyZQ==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
Y2U3OGU3ZTljNzI5NWJkYWJjY2M1NjIwZDAyOTQ2OGEyMGFlY2RlMTE5NGY0
|
|
10
|
+
NTQ2N2RlYTgwNWNiOGNhNzE4ODVmNjk2NWFiZDVhNGUxOWYwNGRjNzdhYzky
|
|
11
|
+
NzcwYWI4NGUxOTIzNjVlZmY3OGUxMjUyNjIyMGUyNDQ2ODUyNjk=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZDc4OTAxMjNkM2NiYjUzMTIyYmQ0MDc1NDYzZTk4MThjYTUyZGI3NWJkMjY5
|
|
14
|
+
MmFhMjMwNGUxOWU0YzFkZmU5YTcwNDA0MDFhN2M4MGFhNWM0OTJmZTQ3Yjlm
|
|
15
|
+
MDllYzg5MGE3NDY2YzM3ZjcwZmMwMzE4NjA2YTdjMjhiNDA1ZjI=
|
|
@@ -91,7 +91,9 @@ module DataFactory
|
|
|
91
91
|
# 1) The field name and the instance variable name in your data object
|
|
92
92
|
# must be identical. For this reason, this method can only
|
|
93
93
|
# be used in your data objects' create methods.
|
|
94
|
-
# 2) Your checkbox data object variables
|
|
94
|
+
# 2) Your checkbox and radio button data object instance variables are
|
|
95
|
+
# either nil, :set, or :clear. Any other values will not be handled
|
|
96
|
+
# correctly.
|
|
95
97
|
# 3) Since the listed fields get filled out in random order, be sure that
|
|
96
98
|
# this is okay in the context of your page--in other words, if field A
|
|
97
99
|
# needs to be specified before field B then having them both in your
|
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.3.
|
|
3
|
+
s.version = '0.3.7'
|
|
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("**/**/**")
|