test-factory 0.3.6 → 0.3.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NTYyZTZkODZkOTMwNGI0Yjc2ZjI1Mzc0ZDA3MWUyOGY2NTFmMTk1OQ==
4
+ MTY5NjI0ZDIyZDMzNjlhMTNmOWFjOWNiOTlhY2NjN2Y5MjEzNGZmNQ==
5
5
  data.tar.gz: !binary |-
6
- YzdiZjY2OTliZGE2NGMwNjNmYWVmOWJhMDkwZWQxNGM2OTI5YWI5Mw==
6
+ N2VjY2FlYTg5OWZlMDNiNzk3YWI3Mzk0Y2FkMzkyNGNhYTdhNWEyZQ==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- ZmU3ZWE4NzZkM2E3ZDA4NzYzN2Q0MWJkNmM1ZWRkOTU1MDQ3MDk3N2E0YWM1
10
- MWE5OTEzZTcxMGI2YzM1ZWJmODBhOGI3ZjY2NmUxZTdlNTY3M2MzMTcxMGEy
11
- NDQwNTAxOWFhMmU3YzdmMTVkYTIyZDgxNDI3YTRmMDlkYjExZTA=
9
+ Y2U3OGU3ZTljNzI5NWJkYWJjY2M1NjIwZDAyOTQ2OGEyMGFlY2RlMTE5NGY0
10
+ NTQ2N2RlYTgwNWNiOGNhNzE4ODVmNjk2NWFiZDVhNGUxOWYwNGRjNzdhYzky
11
+ NzcwYWI4NGUxOTIzNjVlZmY3OGUxMjUyNjIyMGUyNDQ2ODUyNjk=
12
12
  data.tar.gz: !binary |-
13
- YWI3NmNjY2QwZWJjMTJmOGYzNTU5OWU3YTJhYmE1OGI3NzBlZWM2MjQ5MWY2
14
- M2NmMmU0OWRkOGMzYWRlODQxZDVjMzQ1MjFkY2E0MzVlMmE0MjkyZGJhMTBi
15
- ZTM0NDMwY2E1MTFjNmRkM2NlYzYyODEwNGVhMzM1M2IxNTdkMjA=
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.6'
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("**/**/**")
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.3.6
4
+ version: 0.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abraham Heward