Sha256: 66a5de57499e38201c280c254c3dbff986cb212ff532eaa39b9fc1efea79989e

Contents?: true

Size: 1.44 KB

Versions: 5

Compression:

Stored size: 1.44 KB

Contents

Feature: Ready

Scenario: Ready issue
  Given a fresh set of repositories
  When I cd to the user repo
    And I execute gitcycle branch with a new URL or string
    And I give default input
    And gitcycle runs
    And I commit something
    And I execute gitcycle with "ready"
    And gitcycle runs
  Then output includes
    """
    Retrieving branch information from gitcycle.
    Adding remote repo 'config.owner/config.repo'.
    Fetching remote 'config.owner'.
    Merging remote branch 'master' from 'config.owner/config.repo'.
    Adding remote repo 'config.user/config.repo'.
    Fetching remote 'config.user'.
    Merging remote branch 'master-ticket.id' from 'config.user/config.repo'.
    Creating GitHub pull request.
    Labeling issue as 'Pending Review'.
    """

Scenario: Collaborator
  Given a fresh set of repositories
  When I cd to the owner repo
    And I create a new branch "some_branch"
    And I checkout some_branch
    And I push some_branch
    And I cd to the user repo
    And I execute gitcycle branch with a new URL or string
    And I enter "n"
    And I enter "config.owner/some_branch"
    And I enter "y"
    And gitcycle runs
    And I commit something
    And I execute gitcycle with "ready"
    And gitcycle runs
  Then output includes
    """
    Retrieving branch information from gitcycle.
    Adding remote repo 'config.owner/config.repo'.
    Fetching remote 'config.owner'.
    Pushing branch 'config.owner/some_branch'.
    """

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
gitcycle-0.2.19 features/ready.feature
gitcycle-0.2.18 features/ready.feature
gitcycle-0.2.17 features/ready.feature
gitcycle-0.2.16 features/ready.feature
gitcycle-0.2.15 features/ready.feature