middleman/middleman-core/features/chained_templates.feature

19 lines
711 B
Gherkin
Raw Normal View History

Feature: Templates should be chainable
In order to insert variables and data in "static" engines
Scenario: Data in Erb in Markdown
Given the Server is running at "chained-app"
When I go to "/index.html"
Then I should see "Title</h1>"
And I should see "Subtitle</h2>"
2011-11-29 20:51:01 +01:00
And I should see "Sup</h3>"
Scenario: Build chained template
2011-12-16 01:33:09 +01:00
Given a successfully built app at "chained-app"
2011-12-16 01:21:34 +01:00
When I cd to "build"
Then the following files should exist:
| index.html |
And the file "index.html" should contain "Title</h1>"
And the file "index.html" should contain "Subtitle</h2>"
And the file "index.html" should contain "Sup</h3>"