14 lines
280 B
Python
14 lines
280 B
Python
|
from tests.package.test_lua import TestLuaBase
|
||
|
|
||
|
|
||
|
class TestLuaLuaCffi(TestLuaBase):
|
||
|
config = TestLuaBase.config + \
|
||
|
"""
|
||
|
BR2_PACKAGE_LUA=y
|
||
|
BR2_PACKAGE_LUA_CFFI=y
|
||
|
"""
|
||
|
|
||
|
def test_run(self):
|
||
|
self.login()
|
||
|
self.module_test("cffi")
|