testing alternative (passthrough) compressor works inline, but not through Sprockets

This commit is contained in:
Thomas Reynolds 2011-12-12 13:54:04 -08:00
parent 911fe031bd
commit f4436eb49e
12 changed files with 94 additions and 3 deletions

View file

@ -9,15 +9,47 @@ Feature: Minify Javascript
And the Server is running at "test-app"
When I go to "/inline-js.html"
Then I should see "10" lines
Scenario: Rendering inline js with a passthrough minifier
Given the Server is running at "passthrough-app"
When I go to "/inline-js.html"
Then I should see "11" lines
Scenario: Rendering inline js with the feature enabled
Given "minify_javascript" feature is "enabled"
And the Server is running at "test-app"
When I go to "/inline-js.html"
Then I should see "5" lines
Scenario: Rendering external js with the feature enabled
Given "minify_javascript" feature is "enabled"
And the Server is running at "test-app"
When I go to "/javascripts/js_test.js"
Then I should see "1" lines
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
Scenario: Rendering inline js (coffeescript) with the feature enabled
Given "minify_javascript" feature is "enabled"
And the Server is running at "test-app"
When I go to "/inline-coffeescript.html"
Then I should see "5" lines
Scenario: Rendering external js (coffeescript) with the feature enabled
Given "minify_javascript" feature is "enabled"
And the Server is running at "test-app"
When I go to "/javascripts/coffee_test.js"
Then I should see "1" lines
Scenario: Rendering inline js (coffeescript) with a passthrough minifier
Given the Server is running at "passthrough-app"
When I go to "/inline-coffeescript.html"
Then I should see "17" lines
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