0c839dc11c
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>
21 lines
405 B
Python
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")
|