-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add acceptance test for 'librarian-puppet init'
- Loading branch information
1 parent
6ca613b
commit 88c27e9
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Feature: init subcommand should generate a Puppetfile | ||
In order to start using librarian-puppet in a project | ||
A project will need a Puppetfile. | ||
If a user runs "librarian-puppet init" | ||
Then the exit status should be 0 | ||
And a file named "Puppetfile" should exist | ||
|
||
|
||
Scenario: init subcommand should generate a Puppetfile | ||
When I run `librarian-puppet init` | ||
Then the exit status should be 0 | ||
Then a file named "Puppetfile" should exist |