Refactored

This commit is contained in:
jeroenops
2018-11-13 21:55:59 +01:00
commit b36df4384a
129 changed files with 14400 additions and 0 deletions

0
wo/utils/__init__.py Normal file
View File

15
wo/utils/test.py Normal file
View File

@@ -0,0 +1,15 @@
"""Testing utilities for WordOps"""
from wo.cli.main import WOTestApp
from cement.utils.test import *
class WOTestCase(CementTestCase):
app_class = WOTestApp
def setUp(self):
"""Override setup actions (for every test)."""
super(WOTestCase, self).setUp()
def tearDown(self):
"""Override teardown actions (for every test)."""
super(WOTestCase, self).tearDown()