2011-12-27 01:18:05 +01:00
|
|
|
Feature: Sass Partials
|
|
|
|
Scenario: The preview server should update stylesheets when Sass partials change
|
2011-12-27 09:45:17 +01:00
|
|
|
Given the Server is running at "preview-app"
|
2011-12-27 01:18:05 +01:00
|
|
|
And the file "source/stylesheets/_partial.sass" has the contents
|
|
|
|
"""
|
|
|
|
body
|
|
|
|
font-size: 14px
|
|
|
|
"""
|
|
|
|
When I go to "/stylesheets/main.css"
|
|
|
|
Then I should see "font-size: 14px"
|
|
|
|
And the file "source/stylesheets/_partial.sass" has the contents
|
|
|
|
"""
|
|
|
|
body
|
|
|
|
font-size: 18px
|
|
|
|
"""
|
|
|
|
When I go to "/stylesheets/main.css"
|
2011-12-27 09:45:17 +01:00
|
|
|
Then I should see "font-size: 18px"
|
|
|
|
|
|
|
|
Scenario: The preview server should update stylesheets when Sprockets partials change
|
|
|
|
Given the Server is running at "preview-app"
|
|
|
|
And the file "source/stylesheets/_partial2.css.sass" has the contents
|
|
|
|
"""
|
|
|
|
body
|
|
|
|
font-size: 14px
|
|
|
|
"""
|
|
|
|
When I go to "/stylesheets/main2.css"
|
|
|
|
Then I should see "font-size: 14px"
|
|
|
|
And the file "source/stylesheets/_partial2.css.sass" has the contents
|
|
|
|
"""
|
|
|
|
body
|
|
|
|
font-size: 18px
|
|
|
|
"""
|
|
|
|
When I go to "/stylesheets/main2.css"
|
2011-12-27 01:18:05 +01:00
|
|
|
Then I should see "font-size: 18px"
|