2018-11-24 10:07:17 +01:00
|
|
|
from tests.package.test_perl import TestPerlBase
|
|
|
|
|
|
|
|
|
|
|
|
class TestPerlClassLoad(TestPerlBase):
|
|
|
|
"""
|
|
|
|
package:
|
|
|
|
Class-Load
|
|
|
|
direct dependencies:
|
2018-12-04 05:37:49 +01:00
|
|
|
Data-OptList
|
2018-11-24 10:07:17 +01:00
|
|
|
Module-Implementation
|
|
|
|
Module-Runtime
|
|
|
|
Package-Stash
|
|
|
|
Try-Tiny
|
|
|
|
indirect dependencies:
|
|
|
|
Dist-CheckConflicts
|
2018-12-04 05:37:49 +01:00
|
|
|
Params-Util XS
|
2018-11-24 10:07:17 +01:00
|
|
|
Sub-Install
|
|
|
|
"""
|
|
|
|
|
|
|
|
config = TestPerlBase.config + \
|
|
|
|
"""
|
|
|
|
BR2_PACKAGE_PERL=y
|
|
|
|
BR2_PACKAGE_PERL_CLASS_LOAD=y
|
|
|
|
"""
|
|
|
|
|
|
|
|
def test_run(self):
|
|
|
|
self.login()
|
|
|
|
self.module_test("Class::Load")
|