Sha256: 3d5b9c2a913dccd4f23f5fff24aaeb0a37358d8d135f05bf73ea4abf119ba090

Contents?: true

Size: 362 Bytes

Versions: 3

Compression:

Stored size: 362 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_file("sample1.feature", contents)
end

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wally-0.0.19 features/step_definitions/notifications_steps.rb
wally-0.0.18 features/step_definitions/notifications_steps.rb
wally-0.0.17 features/step_definitions/notifications_steps.rb