add detection for Gosu

This commit is contained in:
Gus Prevas
2011-08-04 20:50:29 -04:00
parent 3459f5b438
commit aaa14cfca6
7 changed files with 143 additions and 0 deletions

View File

@@ -324,6 +324,13 @@ 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
assert_equal Language['Gosu'], blob("hello.gsp").language
assert_equal Language['Gosu'], blob("Hello.gst").language
assert_equal Language['Gosu'], blob("hello.vark").language
end
def test_lexer