Skip to content

Commit 5714c1f

Browse files
committed
remove echo test
1 parent 83546a6 commit 5714c1f

1 file changed

Lines changed: 0 additions & 14 deletions

File tree

tests/test_run_cmd.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,6 @@
44
script = importlib.import_module("aci-preupgrade-validation-script")
55

66

7-
@pytest.mark.parametrize(
8-
"cmd, splitlines, expected_output",
9-
[
10-
(["echo", "$'hello\nworld'"], True, ["hello", "world"]),
11-
("echo $'hello\nworld'", True, ["hello", "world"]),
12-
(["echo", "$'hello\nworld'"], False, "hello\nworld\n"),
13-
("echo $'hello\nworld'", False, "hello\nworld\n"),
14-
],
15-
)
16-
def test_run_cmds(cmd, splitlines, expected_output):
17-
result = script.run_cmd(cmd, splitlines)
18-
assert result == expected_output
19-
20-
217
@pytest.mark.parametrize(
228
"cmd, splitlines, expected_type",
239
[

0 commit comments

Comments
 (0)