aboutsummaryrefslogtreecommitdiff
path: root/suites.py
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-06-17 11:37:49 +0200
committerCharles <sircharlesaze@gmail.com>2020-06-17 11:37:49 +0200
commitf36a8ccb91cb71c1e4f15dc12cdecf3167eb1420 (patch)
tree24c0a879c3618423e7285971ba5d41c433060a92 /suites.py
parent24fc395a7853f03def1350f7ff35a7f819473b79 (diff)
downloadminishell_test-f36a8ccb91cb71c1e4f15dc12cdecf3167eb1420.tar.gz
minishell_test-f36a8ccb91cb71c1e4f15dc12cdecf3167eb1420.tar.bz2
minishell_test-f36a8ccb91cb71c1e4f15dc12cdecf3167eb1420.zip
Putting everything in Test and Suite class
Diffstat (limited to 'suites.py')
-rw-r--r--suites.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/suites.py b/suites.py
index 4c49ba0..b49dd28 100644
--- a/suites.py
+++ b/suites.py
@@ -78,11 +78,11 @@ def suite_redirection(test):
test("cat<test<je", setup="echo bonjour > test; echo salut > je")
test("echo bonjour > a'b'c'd'e'f'g'h'i'j'k'l'm'n'o'p'q'r's't'u'v'w'x'y'z'",
- files=["abcdefghijklmnopqrstuvzxyz"])
+ files=["abcdefghijklmnopqrstuvwxyz"])
test('echo bonjour > a"b"c"d"e"f"g"h"i"j"k"l"m"n"o"p"q"r"s"t"u"v"w"x"y"z"',
- files=["abcdefghijklmnopqrstuvzxyz"])
+ files=["abcdefghijklmnopqrstuvwxyz"])
test('echo bonjour > a\'b\'c"d"e\'f\'g"h"i\'j\'k"l"m\'n\'o"p\'q\'r"s\'t\'u"v"w"x"y\'z\'',
- files=["abcdefghijklmnopqrstuvzxyz"])
+ files=["abcdefghijklmnopqrstuvwxyz"])
@suite
def suite_edgecases(test):