mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
12 lines
No EOL
452 B
Gherkin
12 lines
No EOL
452 B
Gherkin
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"
|
|
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"
|
|
When I go to "/custom-layout.html"
|
|
Then I should see "Custom Layout" |