middleman/features/data.feature

17 lines
484 B
Gherkin
Raw Normal View History

2011-07-06 10:29:07 -07:00
Feature: Local Data API
In order to abstract content from structure
Scenario: Rendering html
Given the Server is running at "test-app"
2011-07-06 10:29:07 -07:00
When I go to "/data.html"
Then I should see "One:Two"
2011-09-12 10:20:34 -07:00
Scenario: Rendering json
Given the Server is running at "test-app"
When I go to "/data3.html"
Then I should see "One:Two"
Scenario: Rendering liquid
Given the Server is running at "test-app"
When I go to "/data2.html"
Then I should see "OneTwo"