middleman/middleman-more/features/partials_dir.feature

21 lines
587 B
Gherkin
Raw Normal View History

2013-04-08 09:39:03 +02:00
Feature: Partials dir
Scenario: Find partials in the custom partials dir
Given a fixture app "partials-dir-app"
And a file named "config.rb" with:
"""
set :partials_dir, 'partials'
"""
And the Server is running
When I go to "/index.html"
Then I should see "contents of the partial"
Scenario: Find partials in the default partials dir
Given a fixture app "default-partials-dir-app"
And a file named "config.rb" with:
"""
"""
And the Server is running
When I go to "/index.html"
Then I should see "contents of the partial"