fix compressors. closes #192

This commit is contained in:
Thomas Reynolds 2011-12-12 14:20:20 -08:00
parent f4436eb49e
commit 0b5094e953
4 changed files with 8 additions and 8 deletions

View file

@ -26,4 +26,4 @@ Feature: Minify CSS
Scenario: Rendering external css with passthrough compressor
Given the Server is running at "passthrough-app"
When I go to "/stylesheets/site.css"
Then I should see "41" lines
Then I should see "55" lines

View file

@ -30,7 +30,7 @@ Feature: Minify Javascript
Scenario: Rendering external js with a passthrough minifier
And the Server is running at "passthrough-app"
When I go to "/javascripts/js_test.js"
Then I should see "5" lines
Then I should see "8" lines
Scenario: Rendering inline js (coffeescript) with the feature enabled
Given "minify_javascript" feature is "enabled"
@ -52,4 +52,4 @@ Feature: Minify Javascript
Scenario: Rendering external js (coffeescript) with a passthrough minifier
And the Server is running at "passthrough-app"
When I go to "/javascripts/coffee_test.js"
Then I should see "5" lines
Then I should see "11" lines