You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
412 B
16 lines
412 B
"""Testing utilities for EasyEngine."""
|
|
|
|
from ee.cli.main import EETestApp
|
|
from cement.utils.test import *
|
|
|
|
|
|
class EETestCase(CementTestCase):
|
|
app_class = EETestApp
|
|
|
|
def setUp(self):
|
|
"""Override setup actions (for every test)."""
|
|
super(EETestCase, self).setUp()
|
|
|
|
def tearDown(self):
|
|
"""Override teardown actions (for every test)."""
|
|
super(EETestCase, self).tearDown()
|
|
|