mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
43 lines
1.7 KiB
Gherkin
43 lines
1.7 KiB
Gherkin
Feature: Setting page settings through frontmatter
|
|
Scenario: Setting layout, ignoring, and disabling directory indexes through frontmatter (build)
|
|
Given a successfully built app at "frontmatter-settings-app"
|
|
Then the following files should exist:
|
|
| build/proxied.html |
|
|
And the file "build/alternate_layout.html" should contain "Alternate layout"
|
|
And the following files should not exist:
|
|
| build/ignored.html |
|
|
|
|
Scenario: Setting layout, ignoring, and disabling directory indexes through frontmatter (preview)
|
|
Given the Server is running at "frontmatter-settings-app"
|
|
When I go to "/alternate_layout.html"
|
|
Then I should not see "File Not Found"
|
|
And I should see "Alternate layout"
|
|
When I go to "/ignored.html"
|
|
Then I should see "File Not Found"
|
|
When I go to "/ignored/index.html"
|
|
Then I should see "File Not Found"
|
|
|
|
Scenario: Changing frontmatter in preview server
|
|
Given the Server is running at "frontmatter-settings-app"
|
|
When I go to "/ignored.html"
|
|
Then I should see "File Not Found"
|
|
And the file "source/ignored.html.erb" has the contents
|
|
"""
|
|
---
|
|
ignored: false
|
|
---
|
|
|
|
This file is no longer ignored.
|
|
"""
|
|
When I go to "/ignored.html"
|
|
Then I should see "This file is no longer ignored."
|
|
|
|
Scenario: Overriding layout through frontmatter
|
|
Given the Server is running at "frontmatter-settings-app"
|
|
When I go to "/override_layout.html"
|
|
Then I should see "Layout in use: Override"
|
|
|
|
Scenario: Setting layout through frontmatter even if page is mentioned in config
|
|
Given the Server is running at "frontmatter-settings-app"
|
|
When I go to "/page_mentioned.html"
|
|
Then I should see "Layout in use: Override"
|