Sha256: 3e374938c6cc9de89ed5ffe36115062e56eeb8d249b7b6b71d00bf032cec74b3

Contents?: true

Size: 800 Bytes

Versions: 6

Compression:

Stored size: 800 Bytes

Contents

Feature: Manage Contacts
  In order to value
  As a role
  I want feature


  Scenario: Search Contacts that exist
    Given a contact: "Bob" exists with email_address: "bob@example.com"
    And I am logged in and authorized for everything
    When I go to the mail mgr contacts page
    And I fill in "term" with "bob"
    And I press "Search"
    Then I should be on the mail mgr contacts page
    And I should see "bob@example.com"
    
  Scenario: Search Contacts that don't exist
    Given a contact: "Bob" exists with email_address: "bob@example.com"
    And I am logged in and authorized for everything
    When I go to the mail mgr contacts page
    And I fill in "term" with "sam"
    And I press "Search"
    Then I should be on the mail mgr contacts page
    And I should not see "sam"
  

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
mail_manager-3.0.0 features/contact_management.feature
mail_manager-0.1.4 features/contact_management.feature
mail_manager-0.1.2 features/contact_management.feature
mail_manager-0.1.1 features/contact_management.feature
mail_manager-0.1.0 features/contact_management.feature
mail_manager-0.0.1 features/contact_management.feature