* rename modules * rename methods * add docstrings to the general tests * add base import stub * test_base -> bases * print deprecation warning * redo 2346
4 lines
127 B
Python
4 lines
127 B
Python
from .bases import TestBase, WorldTestBase
|
|
from warnings import warn
|
|
warn("TestBase was renamed to bases", DeprecationWarning)
|