diff --git a/features/init.feature b/features/init.feature new file mode 100644 index 00000000..9da5fc01 --- /dev/null +++ b/features/init.feature @@ -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