Add an inheritance test for importlib.abc.SourceLoader.
This commit is contained in:
parent
0cf9e6a621
commit
b7183d8c1f
|
@ -59,6 +59,11 @@ class ExecutionLoader(InheritanceTests, unittest.TestCase):
|
||||||
subclasses = [abc.PyLoader]
|
subclasses = [abc.PyLoader]
|
||||||
|
|
||||||
|
|
||||||
|
class SourceLoader(InheritanceTests, unittest.TestCase):
|
||||||
|
|
||||||
|
superclasses = [abc.ResourceLoader, abc.ExecutionLoader]
|
||||||
|
|
||||||
|
|
||||||
class PyLoader(InheritanceTests, unittest.TestCase):
|
class PyLoader(InheritanceTests, unittest.TestCase):
|
||||||
|
|
||||||
superclasses = [abc.Loader, abc.ResourceLoader, abc.ExecutionLoader]
|
superclasses = [abc.Loader, abc.ResourceLoader, abc.ExecutionLoader]
|
||||||
|
|
Loading…
Reference in New Issue