kumquat-buildroot/support/testing/tests/package/test_lua_cffi.py
Arnout Vandecappelle (Essensium/Mind) 11f8b9fb45 support/testing: fix test_lua_cffi.py flake8 error
support/testing/tests/package/test_lua_cffi.py:14:1: W391 blank line at end of file

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-02-07 08:52:55 +01:00

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")