Fix tests for Makefile change

This commit is contained in:
Brandon Keepers
2014-11-17 08:15:17 -05:00
parent 419805ce9f
commit 6bf8243014

View File

@@ -139,6 +139,7 @@ class TestLanguage < Test::Unit::TestCase
assert_equal :programming, Language['Python'].type assert_equal :programming, Language['Python'].type
assert_equal :programming, Language['Ruby'].type assert_equal :programming, Language['Ruby'].type
assert_equal :programming, Language['TypeScript'].type assert_equal :programming, Language['TypeScript'].type
assert_equal :programming, Language['Makefile'].type
end end
def test_markup def test_markup
@@ -157,7 +158,6 @@ class TestLanguage < Test::Unit::TestCase
def test_other def test_other
assert_nil Language['Brainfuck'].type assert_nil Language['Brainfuck'].type
assert_nil Language['Makefile'].type
end end
def test_searchable def test_searchable