Sha256: c6fdf56629f1b54e527772b211a311fc435ef37af3aa012ee4981c8d7af5c6f2
Contents?: true
Size: 565 Bytes
Versions: 5
Compression:
Stored size: 565 Bytes
Contents
#include Briar::Label 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
5 entries across 5 versions & 1 rubygems