Sha256: 772485829f2537a07e782a6163b22d65f6adef1e96cceaeca95e32e5cc090efb

Contents?: true

Size: 361 Bytes

Versions: 9

Compression:

Stored size: 361 Bytes

Contents

Given /^a feature file with (\d+) @wip tags$/ do |wip_tag_count|
  contents = "Feature: Feature 1\n"
  1.upto(wip_tag_count.to_i) do |number|
    contents += "@wip\nScenario: Scenario #{number}\n"
  end
  create_feature("project", "sample1.feature", contents)
end

Then /^I see a notification that says "([^"]*)"$/ do |text|
  page.should have_content text
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
nuker-2.0.0 features/step_definitions/notifications_steps.rb
nuker-1.0.0 features/step_definitions/notifications_steps.rb
wally-0.0.47 features/step_definitions/notifications_steps.rb
wally-0.0.46 features/step_definitions/notifications_steps.rb
wally-0.0.45 features/step_definitions/notifications_steps.rb
wally-0.0.44 features/step_definitions/notifications_steps.rb
wally-0.0.43 features/step_definitions/notifications_steps.rb
wally-0.0.42 features/step_definitions/notifications_steps.rb
wally-0.0.41 features/step_definitions/notifications_steps.rb