2011-11-26 21:12:15 -05:00
|
|
|
Feature: Support content_for and yield_content helpers
|
2012-05-24 19:31:21 -04:00
|
|
|
|
|
|
|
Scenario: content_for works as expected in erb
|
|
|
|
Given the Server is running at "content-for-app"
|
|
|
|
When I go to "/content_for_erb.html"
|
2013-06-07 04:59:59 -04:00
|
|
|
Then I should see "In Layout: I am the yielded content erb <s>with html tags</s>"
|
2011-11-26 21:12:15 -05:00
|
|
|
|
|
|
|
Scenario: content_for works as expected in haml
|
2011-12-29 18:09:51 -05:00
|
|
|
Given the Server is running at "content-for-app"
|
2011-11-26 21:12:15 -05:00
|
|
|
When I go to "/content_for_haml.html"
|
2013-06-07 04:59:59 -04:00
|
|
|
Then I should see "In Layout: I am the yielded content haml <s>with html tags</s>"
|
2011-11-26 21:12:15 -05:00
|
|
|
|
|
|
|
Scenario: content_for works as expected in slim
|
2011-12-29 18:09:51 -05:00
|
|
|
Given the Server is running at "content-for-app"
|
2011-11-26 21:12:15 -05:00
|
|
|
When I go to "/content_for_slim.html"
|
2013-06-07 04:59:59 -04:00
|
|
|
Then I should see "In Layout: I am the yielded content slim <s>with html tags</s>"
|