Sha256: c31d2db1ac3cc3cec3e51419c22b34a465bab7f76c99705bac466bad904db214
Contents?: true
Size: 357 Bytes
Versions: 13
Compression:
Stored size: 357 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("sample1.feature", contents) end Then /^I should see a notification that says "([^"]*)"$/ do |text| page.should have_content text end
Version data entries
13 entries across 13 versions & 1 rubygems