From 6987043a5f429e7465189a92630bc8e73c65afb4 Mon Sep 17 00:00:00 2001 From: Thomas Reynolds Date: Thu, 26 Apr 2012 13:54:38 -0700 Subject: [PATCH] Fix minify_css inline test --- middleman-more/features/minify_css.feature | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/middleman-more/features/minify_css.feature b/middleman-more/features/minify_css.feature index cbebdf37..27bbb0e0 100644 --- a/middleman-more/features/minify_css.feature +++ b/middleman-more/features/minify_css.feature @@ -5,14 +5,21 @@ Feature: Minify CSS Given current environment is "build" Scenario: Rendering external css with the feature disabled - Given "minify_css" feature is "disabled" + Given a fixture app "minify-css-app" + And a file named "config.rb" with: + """ + """ And the Server is running at "minify-css-app" When I go to "/stylesheets/site.css" Then I should see "60" lines And I should see "only screen and (device-width" Scenario: Rendering external css with the feature enabled - Given "minify_css" feature is "enabled" + Given a fixture app "minify-css-app" + And a file named "config.rb" with: + """ + activate :minify_css + """ And the Server is running at "minify-css-app" When I go to "/stylesheets/site.css" Then I should see "1" lines @@ -26,7 +33,10 @@ Feature: Minify CSS Then I should see "55" lines Scenario: Rendering inline css with the feature disabled - Given "minify_css" feature is "disabled" + Given a fixture app "minify-css-app" + And a file named "config.rb" with: + """ + """ And the Server is running at "minify-css-app" When I go to "/inline-css.html" Then I should see: @@ -54,7 +64,11 @@ Feature: Minify CSS """ Scenario: Rendering inline css with the feature enabled - Given "minify_css" feature is "enabled" + Given a fixture app "minify-css-app" + And a file named "config.rb" with: + """ + activate :minify_css, :inline => true + """ And the Server is running at "minify-css-app" When I go to "/inline-css.html" Then I should see: