aboutsummaryrefslogtreecommitdiff
path: root/src/suite/decorator.py
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-10-09 11:19:58 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-10-09 11:19:58 +0200
commit84b23010e0d0515ad3ed17a605440e50439781e8 (patch)
tree2c71f2d4afbb7b0a8e9e128f1d1383f5637de88c /src/suite/decorator.py
parent5d1410a9b08eb8df82a43312b8b6d3d9c1c9eb00 (diff)
downloadminishell_test-84b23010e0d0515ad3ed17a605440e50439781e8.tar.gz
minishell_test-84b23010e0d0515ad3ed17a605440e50439781e8.tar.bz2
minishell_test-84b23010e0d0515ad3ed17a605440e50439781e8.zip
Formatting/Refactoring, Added pretty ascii art
Diffstat (limited to 'src/suite/decorator.py')
-rw-r--r--src/suite/decorator.py4
1 files changed, 1 insertions, 3 deletions
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 <me@cacharle.xyz> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# 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))