Improved tests #129

This commit is contained in:
2022-12-01 23:23:48 +01:00
parent f0f79e7e3b
commit 2840628443
19 changed files with 103 additions and 153 deletions

View File

@@ -1,17 +1,18 @@
import os.path
import unittest
from cpl_core.utils import String
from unittests_cli.abc.command_test_case import CommandTestCase
from unittests_cli.constants import PLAYGROUND_PATH
from unittests_shared.cli_commands import CLICommands
class GenerateTestCase(unittest.TestCase):
class GenerateTestCase(CommandTestCase):
_project = 'test-console'
_t_path = 'test'
@classmethod
def setUpClass(cls):
CommandTestCase.setUpClass()
CLICommands.new('console', cls._project, '--ab', '--s', '--venv')
def setUp(self):