mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-01-07 17:18:00 +03:00
ebf76563b8
Break utils.py apart into a whole uitests/lib/ directory with * lib/_dogtailinit.py: all the dogtail library init we need * lib/_node.py: extending our dogtail node class with more functions * lib/app.py: VMMDogtailApp * lib/util.py: util functions plus all the special helpers previously in our custom TestCase * lib/testcase.py: The TestCase that sets and tears down self.app Adjust callers to match and make it easier to eventually convert to native pytest usage Signed-off-by: Cole Robinson <crobinso@redhat.com>
9 lines
214 B
Python
9 lines
214 B
Python
# This work is licensed under the GNU GPLv2 or later.
|
|
# See the COPYING file in the top-level directory.
|
|
|
|
from . import _dogtailinit
|
|
from . import _node
|
|
from . import app
|
|
from . import utils
|
|
from . import testcase
|