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>
This commit is contained in:
Thomas De Schampheleire 2020-02-10 12:26:35 +01:00 committed by Thomas Petazzoni
parent 25033cfb86
commit 0c839dc11c
2 changed files with 21 additions and 0 deletions

View file

@ -463,6 +463,7 @@ F: package/x264/
F: package/x265/
F: package/ytree/
F: package/znc/
F: support/testing/tests/package/test_perl_html_parser.py
N: Biagio Montaruli <biagio.hkr@gmail.com>
F: board/acmesystems/

View file

@ -0,0 +1,20 @@
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")