Add unit tests for base helper modules

This commit is contained in:
Zeel 2026-04-13 15:34:54 -04:00
parent ec8f740de3
commit 4e63dbda4f
4 changed files with 338 additions and 2 deletions

View file

@ -4,9 +4,9 @@ from . spec import Spec
class Parameter:
def __init__(self, value):
self.value = value
async def start():
async def start(self):
pass
async def stop():
async def stop(self):
pass
class ParameterSpec(Spec):