mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
33 lines
849 B
Gherkin
33 lines
849 B
Gherkin
Feature: Honour working directory
|
|
Honour the working directory during testing
|
|
In order to support helpers which work with the current directories
|
|
|
|
Scenario: Set working directory for helpers in tests
|
|
Given a fixture app "empty-app"
|
|
And a file named "source/index.html.erb" with:
|
|
"""
|
|
<%= Dir.getwd %>
|
|
"""
|
|
And the Server is running
|
|
When I go to "/index.html"
|
|
Then I should see:
|
|
"""
|
|
aruba
|
|
"""
|
|
|
|
Scenario: Set working directory for config.rb in tests
|
|
Given a fixture app "empty-app"
|
|
And a file named "config.rb" with:
|
|
"""
|
|
set :my_working_directory, Dir.getwd
|
|
"""
|
|
And a file named "source/index.html.erb" with:
|
|
"""
|
|
<%= config[:my_working_directory] %>
|
|
"""
|
|
And the Server is running
|
|
When I go to "/index.html"
|
|
Then I should see:
|
|
"""
|
|
aruba
|
|
"""
|