mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
18 lines
No EOL
732 B
Gherkin
18 lines
No EOL
732 B
Gherkin
@wip
|
|
|
|
Feature: Support capture_html and yield_content helpers
|
|
|
|
Scenario: content_for works as expected in erb
|
|
Given the Server is running at "capture-html-app"
|
|
When I go to "/capture_html_erb.html"
|
|
Then I should see "In Layout: <h1>I am the yielded content erb</h1>"
|
|
|
|
Scenario: content_for works as expected in haml
|
|
Given the Server is running at "capture-html-app"
|
|
When I go to "/capture_html_haml.html"
|
|
Then I should see "In Layout: <h1>I am the yielded content haml</h1>"
|
|
|
|
Scenario: content_for works as expected in slim
|
|
Given the Server is running at "capture-html-app"
|
|
When I go to "/capture_html_slim.html"
|
|
Then I should see "In Layout: <h1>I am the yielded content slim</h1>" |