2009-11-22 18:37:11 -05:00
|
|
|
Feature: Custom layouts
|
|
|
|
In order easily switch between relative and absolute paths
|
|
|
|
|
|
|
|
Scenario: Using custom :layout attribute
|
|
|
|
Given page "/custom-layout.html" has layout "custom"
|
2011-12-29 18:09:51 -05:00
|
|
|
And the Server is running at "custom-layout-app2"
|
2009-11-22 18:37:11 -05:00
|
|
|
When I go to "/custom-layout.html"
|
|
|
|
Then I should see "Custom Layout"
|
|
|
|
|
|
|
|
Scenario: Using with_layout block
|
|
|
|
Given "/custom-layout.html" with_layout block has layout "custom"
|
2011-12-29 18:09:51 -05:00
|
|
|
And the Server is running at "custom-layout-app2"
|
2009-11-22 18:37:11 -05:00
|
|
|
When I go to "/custom-layout.html"
|
2011-04-22 14:48:48 -04:00
|
|
|
Then I should see "Custom Layout"
|
2012-03-15 03:31:50 -04:00
|
|
|
|
|
|
|
Scenario: Using with_layout block with globs
|
|
|
|
Given "/custom-*" with_layout block has layout "custom"
|
|
|
|
And the Server is running at "custom-layout-app2"
|
|
|
|
When I go to "/custom-layout.html"
|
|
|
|
Then I should see "Custom Layout"
|
2011-04-22 14:48:48 -04:00
|
|
|
|
|
|
|
Scenario: Using custom :layout attribute with folders
|
|
|
|
Given page "/custom-layout-dir/" has layout "custom"
|
2011-12-29 18:09:51 -05:00
|
|
|
And the Server is running at "custom-layout-app2"
|
2011-04-22 14:48:48 -04:00
|
|
|
When I go to "/custom-layout-dir"
|
|
|
|
Then I should see "Custom Layout"
|
|
|
|
When I go to "/custom-layout-dir/"
|
|
|
|
Then I should see "Custom Layout"
|
|
|
|
When I go to "/custom-layout-dir/index.html"
|
|
|
|
Then I should see "Custom Layout"
|
|
|
|
|
|
|
|
Scenario: Using custom :layout attribute with folders
|
|
|
|
Given page "/custom-layout-dir" has layout "custom"
|
2011-12-29 18:09:51 -05:00
|
|
|
And the Server is running at "custom-layout-app2"
|
2011-04-22 14:48:48 -04:00
|
|
|
When I go to "/custom-layout-dir"
|
|
|
|
Then I should see "Custom Layout"
|
|
|
|
When I go to "/custom-layout-dir/"
|
|
|
|
Then I should see "Custom Layout"
|
|
|
|
When I go to "/custom-layout-dir/index.html"
|
|
|
|
Then I should see "Custom Layout"
|
|
|
|
|
|
|
|
Scenario: Using custom :layout attribute with folders
|
|
|
|
Given page "/custom-layout-dir/index.html" has layout "custom"
|
2011-12-29 18:09:51 -05:00
|
|
|
And the Server is running at "custom-layout-app2"
|
2011-04-22 14:48:48 -04:00
|
|
|
When I go to "/custom-layout-dir"
|
|
|
|
Then I should see "Custom Layout"
|
|
|
|
When I go to "/custom-layout-dir/"
|
|
|
|
Then I should see "Custom Layout"
|
|
|
|
When I go to "/custom-layout-dir/index.html"
|
2009-11-22 18:37:11 -05:00
|
|
|
Then I should see "Custom Layout"
|