demonstrate bug with nested_layouts and YAML front matter

This commit is contained in:
Eric Skogen 2011-12-22 16:38:34 -06:00
parent b9b2c2511c
commit 24664e4bba
4 changed files with 22 additions and 1 deletions

View file

@ -6,4 +6,14 @@ Feature: Allow nesting of layouts
Then I should see "Template"
And I should see "Inner"
And I should see "Outer"
And I should see "Master"
And I should see "Master"
Scenario: YAML Front Matter isn't clobbered with nested layouts
Given the Server is running at "nested-layout-app"
When I go to "/data-one.html"
Then I should see "Page Number One"
When I go to "/data-two.html"
Then I should see "Page Number Two"
When I go to "/data-one.html"
Then I should see "Page Number One"
When I go to "/data-two.html"

View file

@ -0,0 +1,5 @@
---
title: Page Number One
layout: outer
---
Page #1

View file

@ -0,0 +1,5 @@
---
title: Page Number Two
layout: outer
---
Page #2

View file

@ -1,2 +1,3 @@
Master
<%= data.page.title %>
<%= yield %>