2012-07-16 04:50:02 -04:00
|
|
|
Feature: Support SASS assets paths
|
|
|
|
In order to import common shared assets when writing Sass
|
|
|
|
|
|
|
|
Scenario: Importing assets from 'assets/stylesheets/' directory in app root
|
|
|
|
Given the Server is running at "sass-assets-path-app"
|
|
|
|
When I go to "/stylesheets/plain.css"
|
|
|
|
Then I should see "color: green;"
|
|
|
|
Then I should see "/* Works with shared SCSS assets from APPROOT/assets/stylesheets/_shared-asset.scss */"
|
2013-04-05 02:19:10 -04:00
|
|
|
Then I should see "/* Works with shared SASS assets from APPROOT/assets/stylesheets/_shared-asset-sass.sass */"
|
2012-07-16 04:50:02 -04:00
|
|
|
Then I should see "font-size: 18px"
|
|
|
|
Then I should see "/* Works with shared SASS assets from external source directory */"
|