Added tests for uninstall command

This commit is contained in:
2022-06-21 09:24:56 +02:00
parent c0789cf4f7
commit 2925788d01
4 changed files with 74 additions and 8 deletions

View File

@@ -36,3 +36,7 @@ class CLICommands:
@classmethod
def remove(cls, project: str):
cls._run('remove', project)
@classmethod
def uninstall(cls, package: str, output=False):
cls._run('uninstall', package, output=output)