1
0
Fork 0
mirror of https://github.com/middleman/middleman.git synced 2022-11-09 12:20:27 -05:00
middleman--middleman/features/content_for.feature
2011-11-26 18:12:15 -08:00

16 lines
No EOL
671 B
Gherkin

Feature: Support content_for and yield_content helpers
Scenario: content_for works as expected in erb
Given the Server is running at "test-app"
When I go to "/content_for_erb.html"
Then I should see "In Layout: I am the yielded content erb"
Scenario: content_for works as expected in haml
Given the Server is running at "test-app"
When I go to "/content_for_haml.html"
Then I should see "In Layout: I am the yielded content haml"
Scenario: content_for works as expected in slim
Given the Server is running at "test-app"
When I go to "/content_for_slim.html"
Then I should see "In Layout: I am the yielded content slim"