From 0d9a7e8edcd6b2e8587d108aeb682b8d7a4caf99 Mon Sep 17 00:00:00 2001 From: Thomas Reynolds Date: Tue, 20 Sep 2011 09:27:02 -0700 Subject: [PATCH] Add some tests for font paths, closes #117 --- features/fonts.feature | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/features/fonts.feature b/features/fonts.feature index a4944996..098c1960 100644 --- a/features/fonts.feature +++ b/features/fonts.feature @@ -8,4 +8,10 @@ Feature: Web Fonts Scenario: Rendering scss Given the Server is running at "test-app" When I go to "/stylesheets/fonts.css" - Then I should see "/fonts/StMarie-Thin.otf" \ No newline at end of file + Then I should see "/fonts/StMarie-Thin.otf" + + Scenario: Rendering scss with the feature enabled + Given "relative_assets" feature is "enabled" + And the Server is running at "test-app" + When I go to "/stylesheets/fonts.css" + Then I should see "url('../fonts/StMarie" \ No newline at end of file