diff --git a/features/engine/basic.feature b/features/engine/basic.feature
index 294b41f8..c0f2c50e 100644
--- a/features/engine/basic.feature
+++ b/features/engine/basic.feature
@@ -1,6 +1,7 @@
Feature: Engine
- As a website user
- I want to be able to view someones created locomotive pages
+ As a designer
+ I want to be able to build simple page html layouts
+ that render correctly to the client
Background:
Given I have the site: "test site" set up
@@ -16,102 +17,6 @@ Scenario: Simple Page
Hello World
"""
-Scenario: Page extending a layout with multiple blocks
- Given a layout named "layout_with_sidebar" with the source:
- """
-
-
-
-
- {% block body %}DEFAULT BODY CONTENT{% endblock %}
-
-
-
- """
- And a page named "hello-world-multiblocks" with the template:
- """
- {% extends 'layout_with_sidebar' %}
- {% block body %}Hello world{% endblock %}
- """
- When I view the rendered page at "/hello-world-multiblocks"
- Then the rendered output should look like:
- """
-
-
-
-
- {% block body %}DEFAULT BODY CONTENT{% endblock %}
-
-
-
- """
- And a layout named "custom_layout_with_sidebar" with the source:
- """
- {% extends 'layout_with_sidebar' %}
- {% block sidebar %}Custom sidebar{% endblock %}
- {% block body %}Hello{% endblock %}
- """
- And a page named "hello-world-multiblocks" with the template:
- """
- {% extends 'custom_layout_with_sidebar' %}
- {% block body %}{{ block.super }} world{% endblock %}
- """
- When I view the rendered page at "/hello-world-multiblocks"
- Then the rendered output should look like:
- """
-
-
+
+
+ {% block body %}DEFAULT BODY CONTENT{% endblock %}
+
+
+
+ """
+ And a page named "hello-world-multiblocks" with the template:
+ """
+ {% extends 'layout_with_sidebar' %}
+ {% block body %}Hello world{% endblock %}
+ """
+ When I view the rendered page at "/hello-world-multiblocks"
+ Then the rendered output should look like:
+ """
+
+
+
+
+ {% block body %}DEFAULT BODY CONTENT{% endblock %}
+
+
+
+ """
+ And a layout named "custom_layout_with_sidebar" with the source:
+ """
+ {% extends 'layout_with_sidebar' %}
+ {% block sidebar %}Custom sidebar{% endblock %}
+ {% block body %}Hello{% endblock %}
+ """
+ And a page named "hello-world-multiblocks" with the template:
+ """
+ {% extends 'custom_layout_with_sidebar' %}
+ {% block body %}{{ block.super }} world{% endblock %}
+ """
+ When I view the rendered page at "/hello-world-multiblocks"
+ Then the rendered output should look like:
+ """
+
+