Sha256: 62b19b9b0845047f066690242816875bf8f874a81322881d6930ae7f2038534d

Contents?: true

Size: 618 Bytes

Versions: 4

Compression:

Stored size: 618 Bytes

Contents

Feature: List users
    As a user
    I want to list all users
    So that I can see if the user I want is in the config

    Scenario: list users
        Given user list contains user "John Galt" with email "jgalt@example.com" 
        And user list contains user "Raphe Rackstraw" with email "rrack@github.com" 
        When I type "git su --list"
        Then I should see "John Galt <jgalt@example.com>"
        And I should see "Raphe Rackstraw <rrack@github.com>"

    Scenario: no users configured yet 
        Given user list is empty 
        When I type "git su --list"
        Then I shouldn't see anything

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
gitsu-1.0.0 features/list_users.feature
gitsu-0.0.3 features/list_users.feature
gitsu-0.0.2 features/list_users.feature
gitsu-0.0.1 features/list_users.feature