Added cpl add test

This commit is contained in:
2022-06-03 23:35:07 +02:00
parent 9fca2018e5
commit 9b56650d4b
4 changed files with 61 additions and 14 deletions

View File

@@ -17,6 +17,10 @@ class CLICommands:
subprocess.run(command, env=env_vars)
@classmethod
def add(cls, source: str, target: str):
cls._run('add', source, target)
@classmethod
def generate(cls, schematic: str, name: str, output=False):
cls._run('generate', schematic, name, output=output)