test_perl_class_load.py 586 B

12345678910111213141516171819202122232425262728
  1. from tests.package.test_perl import TestPerlBase
  2. class TestPerlClassLoad(TestPerlBase):
  3. """
  4. package:
  5. Class-Load
  6. direct dependencies:
  7. Data-OptList *
  8. Module-Implementation
  9. Module-Runtime
  10. Package-Stash
  11. Try-Tiny
  12. indirect dependencies:
  13. Dist-CheckConflicts
  14. Params-Util
  15. Sub-Install
  16. """
  17. config = TestPerlBase.config + \
  18. """
  19. BR2_PACKAGE_PERL=y
  20. BR2_PACKAGE_PERL_CLASS_LOAD=y
  21. """
  22. def test_run(self):
  23. self.login()
  24. self.module_test("Class::Load")