Added tests for build command

This commit is contained in:
2022-06-23 21:49:44 +02:00
parent 2925788d01
commit 32478926c8
4 changed files with 115 additions and 27 deletions

View File

@@ -21,6 +21,10 @@ class CLICommands:
def add(cls, source: str, target: str):
cls._run('add', source, target)
@classmethod
def build(cls):
cls._run('build')
@classmethod
def generate(cls, schematic: str, name: str, output=False):
cls._run('generate', schematic, name, output=output)