Sha256: 3f9e50a20a48930a3ed70a1e98ac292b0c6b9609ac8e96732053fa49b7ff233e

Contents?: true

Size: 368 Bytes

Versions: 7

Compression:

Stored size: 368 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 should see a notification that says "([^"]*)"$/ do |text|
  page.should have_content text
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
wally-0.0.40 features/step_definitions/notifications_steps.rb
wally-0.0.39 features/step_definitions/notifications_steps.rb
wally-0.0.38 features/step_definitions/notifications_steps.rb
wally-0.0.37 features/step_definitions/notifications_steps.rb
wally-0.0.36 features/step_definitions/notifications_steps.rb
wally-0.0.35 features/step_definitions/notifications_steps.rb
wally-0.0.34 features/step_definitions/notifications_steps.rb