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