Sha256: ebd89cc17328f10b4fb0aed7b8f9032f4f4d8bde336a6d1b87f53710589ed489

Contents?: true

Size: 1.02 KB

Versions: 1

Compression:

Stored size: 1.02 KB

Contents

Feature: ppl phone

  Scenario: Add a phone number to a contact
    Given I am in an address book with a blank contact called bob
    And I run "ppl phone bob 01234567890"
    Then it should succeed
    And bob should have 1 phone number
    And the 1st phone number should be "01234567890"

  Scenario: Update a phone number's type
    Given I am in the same address book as before
    And I run "ppl phone bob 01234567890 --type cell"
    Then it should succeed
    And bob should have 1 phone number
    And the 1st phone number should be "01234567890  (cell)"

  Scenario: Remove a phone number's type
    Given I am in the same address book as before
    And I run "ppl phone bob 01234567890 --type ''"
    Then it should succeed
    And bob should have 1 phone number
    And the 1st phone number should be "01234567890"

  Scenario: Remove a phone number from a contact
    Given I am in the same address book as before
    And I run "ppl phone bob --delete 01234567890"
    Then it should succeed
    And bob should have 0 phone numbers

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ppl-1.23.0 features/phone.feature