kumquat-buildroot/support/testing/tests/package/test_python_gobject.py
Adam Duskett 600132f8c0 support/testing: add python-gobject test
Add a simple test case that imports the module.

Signed-off-by: Adam Duskett <Aduskett@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2019-12-03 23:49:34 +01:00

12 lines
333 B
Python

from tests.package.test_python import TestPythonPackageBase
class TestPythonPy2Gobject(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
"""
BR2_PACKAGE_PYTHON=y
BR2_PACKAGE_PYTHON_GOBJECT=y
"""
sample_scripts = ["tests/package/sample_python_gobject.py"]