2010-09-06 13:59:51 -04:00
|
|
|
Feature: Support SCSS Syntax
|
|
|
|
In order to offer an alternative when writing Sass
|
|
|
|
|
|
|
|
Scenario: Rendering scss
|
2011-12-29 22:04:39 -05:00
|
|
|
Given the Server is running at "scss-app"
|
2010-09-06 13:59:51 -04:00
|
|
|
When I go to "/stylesheets/site_scss.css"
|
2011-07-01 13:07:50 -04:00
|
|
|
Then I should see "html"
|
|
|
|
|
|
|
|
Scenario: Rendering scss
|
2011-12-29 22:04:39 -05:00
|
|
|
Given the Server is running at "scss-app"
|
2011-07-01 13:07:50 -04:00
|
|
|
When I go to "/stylesheets/layout.css"
|
2018-12-31 15:41:21 -05:00
|
|
|
Then I should see "html"
|
|
|
|
|
|
|
|
Scenario: Rendering scss errors
|
|
|
|
Given the Server is running at "scss-app"
|
|
|
|
When I go to "/stylesheets/error.css"
|
|
|
|
Then I should see "Error:"
|