@@ -7,9 +7,11 @@ Feature: Git Repository
7
7
8
8
Scenario : to be versioned
9
9
Given the project should be versioned in git
10
+ And a language scaffolder is chosen
10
11
When the project is scaffolded
11
12
Then the directory is initialized as a git repository
12
13
And the base git files should be present
14
+ And the ignores are defined in the gitignore
13
15
14
16
Scenario : to be versioned and hosted
15
17
Given the project should be versioned in git
@@ -19,14 +21,16 @@ Feature: Git Repository
19
21
20
22
Scenario : already versioned
21
23
Given the project root is already initialized as a git repository
24
+ And a language scaffolder is chosen
22
25
When the project is scaffolded
23
26
Then the base git files should be present
24
- And the gitignore file is unchanged
27
+ And the additional ignores are added to the gitignore
25
28
26
29
@wip
27
30
Scenario : already versioned without an existing gitignore
28
31
Given the project root is already initialized as a git repository
32
+ And a language scaffolder is chosen
29
33
But there is no preexisting gitignore
30
34
When the project is scaffolded
31
35
Then the base git files should be present
32
- And the gitignore file is unchanged
36
+ And the gitignore file is added
0 commit comments