mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-09 17:03:35 -09:00
package/perl-cgi-session: new package
See here for a description: https://metacpan.org/pod/CGI::Session Signed-off-by: Deividas Puplauskas <deividas.puplauskas@gmail.com> Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
committed by
Julien Olivain
parent
35d3927e85
commit
7b822ef500
34
support/testing/tests/package/test_perl_cgi_session.py
Normal file
34
support/testing/tests/package/test_perl_cgi_session.py
Normal file
@@ -0,0 +1,34 @@
|
||||
from tests.package.test_perl import TestPerlBase
|
||||
|
||||
|
||||
class TestPerlCGISession(TestPerlBase):
|
||||
"""
|
||||
package:
|
||||
CGI-Session
|
||||
direct dependencies:
|
||||
CGI
|
||||
indirect dependencies:
|
||||
Clone XS
|
||||
Encode-Locale
|
||||
HTML-Parser XS
|
||||
HTML-Tagset
|
||||
HTTP-Date
|
||||
HTTP-Message
|
||||
IO-HTML
|
||||
LWP-MediaTypes
|
||||
MIME-Base32
|
||||
TimeDate
|
||||
URI
|
||||
"""
|
||||
|
||||
config = TestPerlBase.config + \
|
||||
"""
|
||||
BR2_PACKAGE_PERL=y
|
||||
BR2_PACKAGE_PERL_CGI_SESSION=y
|
||||
"""
|
||||
|
||||
def test_run(self):
|
||||
self.login()
|
||||
self.module_test("Clone")
|
||||
self.module_test("HTML::Parser")
|
||||
self.module_test("CGI::Session")
|
||||
Reference in New Issue
Block a user