Added tests for install command

This commit is contained in:
2022-06-21 08:56:26 +02:00
parent 89d591ce0a
commit c0789cf4f7
4 changed files with 87 additions and 6 deletions

View File

@@ -25,6 +25,10 @@ class CLICommands:
def generate(cls, schematic: str, name: str, output=False):
cls._run('generate', schematic, name, output=output)
@classmethod
def install(cls, package: str = '', output=False):
cls._run('install', package, output=output)
@classmethod
def new(cls, project_type: str, name: str, *args, output=False):
cls._run('new', project_type, name, *args, output=output)