Sha256: 5a0c5182e43baf5ceef49b412065cc38e84d3900c6dd690554650913468d928b
Contents?: true
Size: 542 Bytes
Versions: 42
Compression:
Stored size: 542 Bytes
Contents
Then /^I should (see|not see) "([^"]*)" in label "([^"]*)"$/ do |visibility, text, name| if visibility.eql? "see" should_see_label_with_text(name, text) else should_not_see_label_with_text(name, text) end end Then /^I should (see|not see) label "([^"]*)" with text "([^"]*)"$/ do |visibility, name, text| if visibility.eql? 'see' should_see_label_with_text(name, text) else should_not_see_label_with_text(name, text) end end Then /^I should see an "([^"]*)" label$/ do |label_id| should_see_label label_id end
Version data entries
42 entries across 42 versions & 1 rubygems