Sha256: 454f948efc1c03b0d0f4a72fd513b32387d448a0863c8210dd220db5e323c337

Contents?: true

Size: 868 Bytes

Versions: 5

Compression:

Stored size: 868 Bytes

Contents

@gem
Feature: User delivers a flow
  As a User
  I can deliver a flow
  So I can merge in my topic branch

  Background:
    Given I have a git repository with a branch named "master" checked out
    And I have a remote git repository named "origin"
    And the remote repository named "origin" has changes on the "master" branch
    And I cd to "master_repo"
    When I run `git-reflow start new-branch`
    And I append to "README" with:
      | changed |
    And I successfully run `git add .`
    And I successfully run `git commit -am "Changed readme"`
    Given I have a reviewed feature branch named "new-feature" checked out

  Scenario: User runs git-reflow deliver without any parameters
    When I deliver my "new-feature" branch
    Then the branch "master" should be checked out
    And the branch "master" should be up to date with the remote repository

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
git_reflow-0.2.5 features/user_delivers_flow.feature
git_reflow-0.2.4 features/user_delivers_flow.feature
git_reflow-0.2.2 features/user_delivers_flow.feature
git_reflow-0.2.1 features/user_delivers_flow.feature
git_reflow-0.2 features/user_delivers_flow.feature