2010-07-31 07:11:44 +00:00
|
|
|
Feature: Engine
|
2010-08-16 22:07:54 +00:00
|
|
|
As a designer
|
|
|
|
I want to be able to build simple page html layouts
|
|
|
|
that render correctly to the client
|
2010-07-31 07:11:44 +00:00
|
|
|
|
2010-08-01 20:55:30 +00:00
|
|
|
Background:
|
|
|
|
Given I have the site: "test site" set up
|
|
|
|
|
2010-08-16 21:26:15 +00:00
|
|
|
Scenario: Simple Page
|
|
|
|
Given a page named "hello-world" with the template:
|
|
|
|
"""
|
|
|
|
Hello World
|
|
|
|
"""
|
|
|
|
When I view the rendered page at "/hello-world"
|
|
|
|
Then the rendered output should look like:
|
|
|
|
"""
|
|
|
|
Hello World
|
|
|
|
"""
|