CoffeeScript JS guessing

This commit is contained in:
Joshua Peek
2011-05-25 11:25:11 -05:00
parent 3ea66af178
commit 972632b9db
10 changed files with 188 additions and 0 deletions

View File

@@ -116,6 +116,15 @@ class TestBlob < Test::Unit::TestCase
# Minified JS
assert !blob("jquery-1.6.1.js").generated?
assert blob("jquery-1.6.1.min.js").generated?
# CoffeScript JS
# These examples are to basic to tell
assert !blob("coffee/empty.js").generated?
assert !blob("coffee/hello.js").generated?
assert blob("coffee/intro.js").generated?
assert blob("coffee/classes.js").generated?
end
def test_vendored