From e0676f4c3f263fc13ed3d77541ed4c3c7b1116cb Mon Sep 17 00:00:00 2001 From: sepandhaghighi Date: Fri, 13 Sep 2024 17:25:53 +0430 Subject: [PATCH] fix : tests updated --- test/test.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/test/test.py b/test/test.py index a6f4fe9..c6cae68 100644 --- a/test/test.py +++ b/test/test.py @@ -112,6 +112,24 @@ . . . ###################################################################### Well done! +>>> run({'cycle': 2, 'pre': 3, 'unit': 1, 'ratio': [1, 0, 3, 0]}, silent=True) +Preparing . . . +###################################################################### +Start +###################################################################### +Cycle : 1 (Remaining : 1) +- Inhale for 1 sec +. +- Exhale for 3 sec +. . . +###################################################################### +Cycle : 2 (Remaining : 0) +- Inhale for 1 sec +. +- Exhale for 3 sec +. . . +###################################################################### +Well done! >>> run({'cycle': 2, 'pre': 3, 'unit': 1, 'ratio': [1, 0, 3.3, 0]}) Preparing . . . ######################################################################