36395e4762
The lua-augeas package provides a Lua binding for augeas https://github.com/ncopa/lua-augeas Based on initial work from Nicolas Carrier <nicolas.carrier@orolia.com> Signed-off-by: Herve Codina <herve.codina@bootlin.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
28 lines
589 B
Python
28 lines
589 B
Python
from tests.package.test_lua import TestLuaBase
|
|
|
|
|
|
class TestLuaLuaAugeas(TestLuaBase):
|
|
config = TestLuaBase.config + \
|
|
"""
|
|
BR2_PACKAGE_LUA=y
|
|
BR2_PACKAGE_AUGEAS=y
|
|
BR2_PACKAGE_LUA_AUGEAS=y
|
|
"""
|
|
|
|
def test_run(self):
|
|
self.login()
|
|
self.module_test("augeas")
|
|
|
|
|
|
class TestLuajitLuaAugeas(TestLuaBase):
|
|
config = TestLuaBase.config + \
|
|
"""
|
|
BR2_PACKAGE_LUAJIT=y
|
|
BR2_PACKAGE_AUGEAS=y
|
|
BR2_PACKAGE_LUA_AUGEAS=y
|
|
"""
|
|
|
|
def test_run(self):
|
|
self.login()
|
|
self.module_test("augeas")
|