Added tests for publish command

This commit is contained in:
2022-06-23 23:47:29 +02:00
parent 9e978f3ece
commit 6e50d0cb22
3 changed files with 92 additions and 14 deletions

View File

@@ -41,6 +41,10 @@ class CLICommands:
def new(cls, project_type: str, name: str, *args, output=False):
cls._run('new', project_type, name, *args, output=output)
@classmethod
def publish(cls):
cls._run('publish')
@classmethod
def remove(cls, project: str):
cls._run('remove', project)