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

Version Path
briar-0.0.8 features/step_definitions/label_steps.rb
briar-0.0.7 features/step_definitions/label_steps.rb
briar-0.0.6 features/step_definitions/label_steps.rb
briar-0.0.5 features/step_definitions/label_steps.rb
briar-0.0.4 features/step_definitions/label_steps.rb