middleman/middleman-core/features/data.feature

28 lines
797 B
Gherkin
Raw Normal View History

2011-07-06 19:29:07 +02:00
Feature: Local Data API
In order to abstract content from structure
Scenario: Rendering html
Given the Server is running at "basic-data-app"
2011-07-06 19:29:07 +02:00
When I go to "/data.html"
Then I should see "One:Two"
2013-03-23 09:13:05 +01:00
2011-09-12 19:20:34 +02:00
Scenario: Rendering json
Given the Server is running at "basic-data-app"
2011-09-12 19:20:34 +02:00
When I go to "/data3.html"
Then I should see "One:Two"
2013-03-23 09:13:05 +01:00
Scenario: Using data in config.rb
Given the Server is running at "data-app"
When I go to "/test1.html"
Then I should see "Welcome"
2013-03-23 09:13:05 +01:00
Scenario: Using data2 in config.rb
Given the Server is running at "data-app"
When I go to "/test2.html"
2013-03-23 09:13:05 +01:00
Then I should see "Welcome"
Scenario: Using nested data
Given the Server is running at "nested-data-app"
When I go to "/test.html"
Then I should see "test:Hello"