From 0c839dc11caef4d243bc5e32ecff38828a680dac Mon Sep 17 00:00:00 2001 From: Thomas De Schampheleire Date: Mon, 10 Feb 2020 12:26:35 +0100 Subject: [PATCH] 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 Signed-off-by: Thomas Petazzoni --- DEVELOPERS | 1 + .../tests/package/test_perl_html_parser.py | 20 +++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 support/testing/tests/package/test_perl_html_parser.py diff --git a/DEVELOPERS b/DEVELOPERS index f0a5041a03..bcd293b4fb 100644 --- a/DEVELOPERS +++ b/DEVELOPERS @@ -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 F: board/acmesystems/ diff --git a/support/testing/tests/package/test_perl_html_parser.py b/support/testing/tests/package/test_perl_html_parser.py new file mode 100644 index 0000000000..6431633482 --- /dev/null +++ b/support/testing/tests/package/test_perl_html_parser.py @@ -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") -- 2.30.2