mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
14 lines
578 B
Gherkin
14 lines
578 B
Gherkin
![]() |
Feature: Build Clean
|
||
|
|
||
|
Scenario: Clean an app with directory indexes
|
||
|
Given a successfully built app at "clean-dir-app"
|
||
|
Then the following files should exist:
|
||
|
| build/about/index.html |
|
||
|
Given a successfully built app at "clean-dir-app" with flags "--clean"
|
||
|
Then the following files should exist:
|
||
|
| build/about/index.html |
|
||
|
|
||
|
Scenario: Clean build an app that's never been built
|
||
|
Given a successfully built app at "clean-dir-app" with flags "--clean"
|
||
|
Then the following files should exist:
|
||
|
| build/about/index.html |
|