aslakhellesoy-cucumber 0.3.9.3 → 0.3.9.4

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.
@@ -3,7 +3,7 @@ module Cucumber #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 3
5
5
  TINY = 9
6
- PATCH = 3 # Set to nil for official release
6
+ PATCH = 4 # Set to nil for official release
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
9
9
  end
@@ -130,6 +130,14 @@ Then /^the "([^\"]*)" checkbox should be checked$/ do |label|
130
130
  <% end -%>
131
131
  end
132
132
 
133
+ Then /^the "([^\"]*)" checkbox should not be checked$/ do |label|
134
+ <% if framework == :rspec -%>
135
+ field_labeled(label).should_not be_checked
136
+ <% else -%>
137
+ assert !field_labeled(label).checked?
138
+ <% end -%>
139
+ end
140
+
133
141
  Then /^I should be on (.+)$/ do |page_name|
134
142
  <% if framework == :rspec -%>
135
143
  URI.parse(current_url).path.should == path_to(page_name)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aslakhellesoy-cucumber
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.9.3
4
+ version: 0.3.9.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - "Aslak Helles\xC3\xB8y"
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-05-27 00:00:00 -07:00
12
+ date: 2009-06-03 00:00:00 -07:00
13
13
  default_executable: cucumber
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -192,6 +192,12 @@ files:
192
192
  - examples/i18n/no/features/summering.feature
193
193
  - examples/i18n/no/features/support/env.rb
194
194
  - examples/i18n/no/lib/kalkulator.rb
195
+ - examples/i18n/pl/Rakefile
196
+ - examples/i18n/pl/features/addition.feature
197
+ - examples/i18n/pl/features/division.feature
198
+ - examples/i18n/pl/features/step_definitons/calculator_steps.rb
199
+ - examples/i18n/pl/features/support/env.rb
200
+ - examples/i18n/pl/lib/calculator.rb
195
201
  - examples/i18n/pt/Rakefile
196
202
  - examples/i18n/pt/features/adicao.feature
197
203
  - examples/i18n/pt/features/step_definitions/calculadora_steps.rb