Merge pull request #1183 from alflanagan/master

Added modernizr.js to vendor files list, added tests
This commit is contained in:
Brandon Keepers
2014-05-09 09:40:55 -04:00
2 changed files with 8 additions and 0 deletions

View File

@@ -104,6 +104,10 @@
# React
- (^|/)react(-[^.]*)?(\.min)?\.js$
# Modernizr
- (^|/)modernizr\-\d\.\d+(\.\d+)?(\.min)?\.js$
- (^|/)modernizr\.custom\.\d+\.js$
## Python ##
# django

View File

@@ -310,6 +310,10 @@ class TestBlob < Test::Unit::TestCase
assert blob("public/javascripts/d3.v3.js").vendored?
assert blob("public/javascripts/d3.v3.min.js").vendored?
# Modernizr
assert blob("public/javascripts/modernizr-2.7.1.js").vendored?
assert blob("public/javascripts/modernizr.custom.01009.js").vendored?
# Fabric
assert blob("fabfile.py").vendored?