From 5fb69aa6ce2f971bc3654d47e3b480b6b20f5f0b Mon Sep 17 00:00:00 2001 From: Shawn Davis Date: Sat, 15 Aug 2020 13:04:29 -0400 Subject: [PATCH] Moved `run()` to common overlay. --- tests/test_library_overlays_posix.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/test_library_overlays_posix.py b/tests/test_library_overlays_posix.py index 83c2549..2cbeba1 100644 --- a/tests/test_library_overlays_posix.py +++ b/tests/test_library_overlays_posix.py @@ -149,11 +149,6 @@ def test_rsync(): assert "/path/to/remote" in s -def test_run(): - c = run("ls -ls") - assert "ls -ls" in c.get_statement() - - def test_scopy(): with pytest.raises(ValueError): c = scopy("/path/to/local/file.txt", "/path/to/remote/file.txt")