mirror of
https://github.com/python/cpython.git
synced 2025-10-17 12:18:23 +00:00
Add an inheritance test for importlib.abc.SourceLoader.
This commit is contained in:
parent
0cf9e6a621
commit
b7183d8c1f
1 changed files with 5 additions and 0 deletions
|
@ -59,6 +59,11 @@ class ExecutionLoader(InheritanceTests, unittest.TestCase):
|
|||
subclasses = [abc.PyLoader]
|
||||
|
||||
|
||||
class SourceLoader(InheritanceTests, unittest.TestCase):
|
||||
|
||||
superclasses = [abc.ResourceLoader, abc.ExecutionLoader]
|
||||
|
||||
|
||||
class PyLoader(InheritanceTests, unittest.TestCase):
|
||||
|
||||
superclasses = [abc.Loader, abc.ResourceLoader, abc.ExecutionLoader]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue