Ensure pbc is treated as binary

This commit is contained in:
Joshua Peek
2011-08-10 22:37:41 -07:00
parent 4f74446eaf
commit 7280dec280
2 changed files with 4 additions and 2 deletions

View File

@@ -79,6 +79,7 @@ class TestBlob < Test::Unit::TestCase
def test_binary
assert blob("git.deb").binary?
assert blob("git.exe").binary?
assert blob("hello.pbc").binary?
assert blob("linguist.gem").binary?
assert blob("octocat.ai").binary?
assert blob("octocat.png").binary?
@@ -324,7 +325,7 @@ class TestBlob < Test::Unit::TestCase
# https://github.com/parrot/parrot
assert_equal Language['Parrot Internal Representation'], blob("hello.pir").language
assert_equal Language['Parrot Assembly'], blob("hello.pasm").language
# http://gosu-lang.org
assert_equal Language['Gosu'], blob("Hello.gs").language
assert_equal Language['Gosu'], blob("Hello.gsx").language