From 84b23010e0d0515ad3ed17a605440e50439781e8 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Fri, 9 Oct 2020 11:19:58 +0200 Subject: Formatting/Refactoring, Added pretty ascii art --- src/suite/decorator.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/suite/decorator.py') diff --git a/src/suite/decorator.py b/src/suite/decorator.py index 12f58a6..45599fa 100644 --- a/src/suite/decorator.py +++ b/src/suite/decorator.py @@ -6,7 +6,7 @@ # By: charles +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/09/11 12:28:00 by charles #+# #+# # -# Updated: 2020/10/08 08:34:10 by cacharle ### ########.fr # +# Updated: 2020/10/09 10:59:09 by cacharle ### ########.fr # # # # ############################################################################ # @@ -28,10 +28,8 @@ def suite(groups: [str] = [], bonus: bool = False): print("You should had a doc string to the {} suite".format(name)) description = "no description" description = description.split("\n")[0].strip() - s = Suite(name, groups + [mod_name], bonus, description) - def test_generator(): def test(*args, **kwargs): s.add(Test(*args, **kwargs)) -- cgit