middleman/middleman-core/features/fonts.feature

16 lines
614 B
Gherkin
Raw Normal View History

2011-09-17 21:52:40 +02:00
Feature: Web Fonts
Scenario: Checking built folder for content
2011-12-16 01:40:07 +01:00
Given a successfully built app at "fonts-app"
When I cd to "build"
Then the following files should exist:
| stylesheets/fonts.css |
And the file "stylesheets/fonts.css" should contain "/fonts/StMarie-Thin.otf"
And the file "stylesheets/fonts.css" should contain "/fonts/blank/blank.otf"
2011-09-17 21:52:40 +02:00
Scenario: Rendering scss
2011-09-20 19:21:38 +02:00
Given the Server is running at "fonts-app"
2011-09-17 21:52:40 +02:00
When I go to "/stylesheets/fonts.css"
Then I should see "/fonts/StMarie-Thin.otf"
And I should see "/fonts/blank/blank.otf"