test/test_trick.rb: Add tests for TRICK 2022 entries

This commit is contained in:
Yusuke Endoh 2022-12-19 22:32:48 +09:00
parent e8b0180974
commit a8485291bb
Notes: git 2022-12-23 18:20:04 +00:00

View File

@ -189,3 +189,26 @@ END
assert_in_out_err(["-W0", "-c", src], "", ["Syntax OK"])
end
end
class TestTRICK2022 < Test::Unit::TestCase
def test_01_tompng
src = File.join(__dir__, "../sample/trick2022/01-tompng/entry.rb")
# only syntax check because it requires matrix
assert_in_out_err(["-W0", "-c", src], "", ["Syntax OK"])
end
def test_02_tompng
src = File.join(__dir__, "../sample/trick2022/02-tompng/entry.rb")
# only syntax check because it works as a web server
assert_in_out_err(["-W0", "-c", src], "", ["Syntax OK"])
end
def test_03_mame
src = File.join(__dir__, "../sample/trick2022/03-mame/entry.rb")
# TODO
assert_in_out_err(["-W0", "-c", src], "", ["Syntax OK"])
end
end