2015-10-12 12:37:07 -07:00
|
|
|
Feature: Extension author could use some hooks
|
|
|
|
|
|
|
|
Scenario: When build
|
|
|
|
Given a fixture app "extension-api-deprecations-app"
|
|
|
|
When I run `middleman build`
|
2016-04-25 17:38:08 -07:00
|
|
|
And the exit status should be 0
|
2015-10-12 12:37:07 -07:00
|
|
|
And the output should contain "`set :layout` is deprecated"
|
2016-04-25 17:38:08 -07:00
|
|
|
And the output should contain "Project built successfully"
|
2015-10-12 12:37:07 -07:00
|
|
|
And the file "build/index.html" should contain "In Index"
|
|
|
|
And the file "build/index.html" should not contain "In Layout"
|
|
|
|
|