mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-25 03:52:10 +00:00
28 lines
591 B
Python
28 lines
591 B
Python
|
|
from tests.package.test_lua import TestLuaBase
|
||
|
|
|
||
|
|
|
||
|
|
class TestLuaLuaLyaml(TestLuaBase):
|
||
|
|
config = TestLuaBase.config + \
|
||
|
|
"""
|
||
|
|
BR2_PACKAGE_LUA=y
|
||
|
|
BR2_PACKAGE_LUA_LYAML=y
|
||
|
|
"""
|
||
|
|
|
||
|
|
def test_run(self):
|
||
|
|
self.login()
|
||
|
|
self.module_test("yaml")
|
||
|
|
self.module_test("lyaml")
|
||
|
|
|
||
|
|
|
||
|
|
class TestLuajitLuaLyaml(TestLuaBase):
|
||
|
|
config = TestLuaBase.config + \
|
||
|
|
"""
|
||
|
|
BR2_PACKAGE_LUAJIT=y
|
||
|
|
BR2_PACKAGE_LUA_LYAML=y
|
||
|
|
"""
|
||
|
|
|
||
|
|
def test_run(self):
|
||
|
|
self.login()
|
||
|
|
self.module_test("yaml")
|
||
|
|
self.module_test("lyaml")
|