Browse Source

added test.py

bugfixes
shital.rtcamp 10 years ago
parent
commit
31660c8f20
  1. 15
      ee/utils/test.py

15
ee/utils/test.py

@ -0,0 +1,15 @@
"""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()
Loading…
Cancel
Save