Sha256: 77256037be4dff4e7a0ba31c82f1029526f41743c7fb60fbf23c25b83b5835b5

Contents?: true

Size: 878 Bytes

Versions: 11

Compression:

Stored size: 878 Bytes

Contents

Feature: Create a git repo
  As a lead devepoer
  In order to work on my new project
  I want my project folder to contain a git repo correctly initialised

  @announce
  Scenario: Create a new git repo on a folder with just a .gitignore
    Given a directory named "my_project"
    When I successfully run `fwt git new my_project`
    Then an initialized git repository should exists inside a directory named "my_project"
    And a file named "my_project/.gitignore" should exist

  Scenario: Fail to create a git repo because one exists already
    Given a directory named "my_project"
    Given an initialized git repository inside a directory named "my_project"
    Given a valid .gitignore file exists inside a directory named "my_project"
    When I run `fwt git new my_project`
    Then the stderr should contain:
    """
    There's already a repository at path
    """

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
fwtoolkit-2.6.4 features/git/create.feature
fwtoolkit-2.6.3 features/git/create.feature
fwtoolkit-2.6.2 features/git/create.feature
fwtoolkit-2.6.1 features/git/create.feature
fwtoolkit-2.6.0 features/git/create.feature
fwtoolkit-2.5.0 features/git/create.feature
fwtoolkit-2.4.0 features/git/create.feature
fwtoolkit-2.3.6 features/git/create.feature
fwtoolkit-2.3.5 features/git/create.feature
fwtoolkit-2.3.4 features/git/create.feature
fwtoolkit-2.3.3 features/git/create.feature