Remove parrot bytecode as a separate language, as well as deprecated/redundant keys in languages.yml and put PIR+PASM in the Parrot group

This commit is contained in:
Jonathan "Duke" Leto
2011-07-28 16:41:41 -07:00
parent a4eb4738d7
commit 03b948a182
2 changed files with 4 additions and 12 deletions

View File

@@ -82,7 +82,6 @@ class TestBlob < Test::Unit::TestCase
assert blob("linguist.gem").binary?
assert blob("octocat.ai").binary?
assert blob("octocat.png").binary?
assert blob("hello.pbc").binary?
assert !blob("README").binary?
assert !blob("file.txt").binary?
assert !blob("foo.rb").binary?
@@ -322,7 +321,6 @@ 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
assert_equal Language['Parrot Bytecode'], blob("hello.pbc").language
end
def test_lexer