* don't deploy ssl certificate if acme.sh failed * install script issues * GPG keys error with old EasyEngine Nginx repository
16 lines
407 B
Python
16 lines
407 B
Python
"""Testing utilities for WordOps"""
|
|
from cement.utils.test import *
|
|
from wo.cli.main import WOTestApp
|
|
|
|
|
|
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()
|