kumquat-buildroot/support/testing/tests/package/test_perl_html_parser.py
Thomas De Schampheleire 0c839dc11c support/testing: add missing test file for perl-html-parser
This file was created by utils/scancpan while adding other packages but
apparently not yet added in the repo.

Assign this test case to Bernd in the DEVELOPERS file since he is
listed as the maintainer for this package.

Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020-03-15 21:38:56 +01:00

21 lines
405 B
Python

from tests.package.test_perl import TestPerlBase
class TestPerlHTMLParser(TestPerlBase):
"""
package:
HTML-Parser XS
direct dependencies:
HTML-Tagset
"""
config = TestPerlBase.config + \
"""
BR2_PACKAGE_PERL=y
BR2_PACKAGE_PERL_HTML_PARSER=y
"""
def test_run(self):
self.login()
self.module_test("HTML::Parser")