mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
12 lines
No EOL
457 B
Gherkin
12 lines
No EOL
457 B
Gherkin
Feature: Relative Assets
|
|
In order easily switch between relative and absolute paths
|
|
|
|
Scenario: Rendering css with the feature disabled
|
|
Given "relative_assets" feature is "disabled"
|
|
When I go to "/stylesheets/relative_assets.css"
|
|
Then I should not see "../"
|
|
|
|
Scenario: Rendering css with the feature enabled
|
|
Given "relative_assets" feature is "enabled"
|
|
When I go to "/stylesheets/relative_assets.css"
|
|
Then I should see "../" |