mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
4fe0732713
* Use "Given" instead of "And" as first scenario step * Remove unnecessary step The following step already invokes this step * Remove setup in feature that doesn't do anything As this referenced "i18n-test-app", but later we run "i18n-mixed-sources", these steps weren't doing anything. * Avoid referencing the same fixture twice The step "the Server is running at" invokes the "a fixture app" step, followed by "the Server is running" step.
17 lines
364 B
Gherkin
17 lines
364 B
Gherkin
Feature: Generic block based pages
|
|
|
|
Scenario: Static Ruby Endpoints
|
|
Given an empty app
|
|
And a file named "config.rb" with:
|
|
"""
|
|
endpoint "hello.html" do
|
|
"world"
|
|
end
|
|
"""
|
|
And a file named "source/index.html.erb" with:
|
|
"""
|
|
Hi
|
|
"""
|
|
And the Server is running
|
|
When I go to "/hello.html"
|
|
Then I should see "world"
|