Added cpl remove test

This commit is contained in:
2022-06-03 23:44:26 +02:00
parent 9b56650d4b
commit dad4913bcd
3 changed files with 32 additions and 5 deletions

View File

@@ -28,3 +28,7 @@ class CLICommands:
@classmethod
def new(cls, project_type: str, name: str, *args, output=False):
cls._run('new', project_type, name, *args, output=output)
@classmethod
def remove(cls, project: str):
cls._run('remove', project)