2009-11-22 18:37:11 -05:00
|
|
|
Feature: Custom layouts
|
|
|
|
In order easily switch between relative and absolute paths
|
2014-06-14 15:38:44 -04:00
|
|
|
|
2009-11-22 18:37:11 -05:00
|
|
|
Scenario: Using custom :layout attribute
|
2014-06-14 15:38:44 -04:00
|
|
|
Given a fixture app "custom-layout-app2"
|
|
|
|
And a file named "config.rb" with:
|
|
|
|
"""
|
|
|
|
page '/custom-layout.html', 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"
|
2014-06-14 15:38:44 -04:00
|
|
|
|
2011-04-22 14:48:48 -04:00
|
|
|
Scenario: Using custom :layout attribute with folders
|
2014-06-14 15:38:44 -04:00
|
|
|
Given a fixture app "custom-layout-app2"
|
|
|
|
And a file named "config.rb" with:
|
|
|
|
"""
|
|
|
|
page '/custom-layout-dir/', 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"
|
2014-06-14 15:38:44 -04:00
|
|
|
|
2011-04-22 14:48:48 -04:00
|
|
|
Scenario: Using custom :layout attribute with folders
|
2014-06-14 15:38:44 -04:00
|
|
|
Given a fixture app "custom-layout-app2"
|
|
|
|
And a file named "config.rb" with:
|
|
|
|
"""
|
|
|
|
page '/custom-layout-dir', 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"
|
2014-06-14 15:38:44 -04:00
|
|
|
|
2011-04-22 14:48:48 -04:00
|
|
|
Scenario: Using custom :layout attribute with folders
|
2014-06-14 15:38:44 -04:00
|
|
|
Given a fixture app "custom-layout-app2"
|
|
|
|
And a file named "config.rb" with:
|
|
|
|
"""
|
|
|
|
page '/custom-layout-dir/index.html', 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"
|
2012-06-17 15:03:36 -04:00
|
|
|
Then I should see "Custom Layout"
|
2014-06-14 15:38:44 -04:00
|
|
|
|
2012-06-17 15:03:36 -04:00
|
|
|
Scenario: Setting layout inside a matching page block
|
|
|
|
Given the Server is running at "page-helper-layout-block-app"
|
|
|
|
When I go to "/index.html"
|
|
|
|
Then I should see "Hello"
|
|
|
|
And I should see "World"
|
|
|
|
When I go to "/path/child.html"
|
|
|
|
Then I should see "Alt"
|
|
|
|
And I should see "Child"
|
|
|
|
And I should not see "Hello"
|
|
|
|
When I go to "/path/index.html"
|
|
|
|
Then I should see "Alt"
|
|
|
|
And I should see "Monde"
|
|
|
|
And I should not see "Hello"
|