2022.6 #88

Merged
edraft merged 158 commits from 2022.6 into master 2022-06-29 17:50:07 +02:00
Showing only changes of commit e0da77fd4b - Show all commits

View File

@ -21,6 +21,11 @@ class NewTestCase(unittest.TestCase):
project_path = os.path.abspath(os.path.join(PLAYGROUND_PATH, name, 'src', String.convert_to_snake_case(name)))
self.assertTrue(os.path.exists(project_path))
self.assertTrue(os.path.join(project_path, f'{name}.json'))
self.assertTrue(os.path.join(project_path, f'application.py'))
self.assertTrue(os.path.join(project_path, f'main.py'))
self.assertTrue(os.path.join(project_path, f'startup.py'))
if project_type == 'unittest':
self.assertTrue(os.path.join(project_path, f'test_case_test_case.py'))
def _test_sub_project(self, project_type: str, name: str, workspace_name: str, *args):
os.chdir(os.path.abspath(os.path.join(os.getcwd(), workspace_name)))