mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
14 lines
653 B
Gherkin
14 lines
653 B
Gherkin
Feature: Middleman New Extension CLI
|
|
|
|
Scenario: Create a new extension scaffold
|
|
Given I run `middleman extension my-extension-library`
|
|
Then the exit status should be 0
|
|
When I cd to "my-extension-library"
|
|
Then the following files should exist:
|
|
| Gemfile |
|
|
| Rakefile |
|
|
| my-extension-library.gemspec |
|
|
| features/support/env.rb |
|
|
| lib/my-extension-library/extension.rb |
|
|
| lib/my-extension-library.rb |
|
|
| .gitignore |
|