Sha256: fefe70f5c768389bf080d1191f85bde761a8a4c2beac11ded2f30975bc070e6c
Contents?: true
Size: 1.1 KB
Versions: 108
Compression:
Stored size: 1.1 KB
Contents
Feature: CSS and Javascripts which are minify shouldn't be re-minified Scenario: JS files containing ".min" should not be re-compressed Given an empty app And a file named "config.rb" with: """ activate :minify_javascript """ And a file named "source/javascripts/test.min.js" with: """ var numbers = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ]; """ And the Server is running at "empty_app" When I go to "/javascripts/test.min.js" Then I should see "10" lines Scenario: CSS files containing ".min" should not be re-compressed Given an empty app And a file named "config.rb" with: """ activate :minify_css """ And a file named "source/stylesheets/test.min.css" with: """ body { one: 1; two: 2; three: 3; four: 4; five: 5; six: 6; seven: 7; eight: 8; nine: 9; ten: 10; } """ And the Server is running at "empty_app" When I go to "/stylesheets/test.min.css" Then I should see "10" lines
Version data entries
108 entries across 108 versions & 5 rubygems