mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
71d684a435
* Only libsass * Fix sass functions * Test for sass exceptions in the main sass test suite. Re-create css exception rendering in SassC
17 lines
No EOL
517 B
Gherkin
17 lines
No EOL
517 B
Gherkin
Feature: Support SCSS Syntax
|
|
In order to offer an alternative when writing Sass
|
|
|
|
Scenario: Rendering scss
|
|
Given the Server is running at "scss-app"
|
|
When I go to "/stylesheets/site_scss.css"
|
|
Then I should see "html"
|
|
|
|
Scenario: Rendering scss
|
|
Given the Server is running at "scss-app"
|
|
When I go to "/stylesheets/layout.css"
|
|
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:" |