diff options
Diffstat (limited to 'tools/util_test.py')
-rwxr-xr-x | tools/util_test.py | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/tools/util_test.py b/tools/util_test.py deleted file mode 100755 index 7f5433114..000000000 --- a/tools/util_test.py +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -import os - -from test_util import DenoTestCase, run_tests -from util import (shell_quote_win, root_path) - - -class TestUtil(DenoTestCase): - def test_shell_quote_win(self): - assert shell_quote_win('simple') == 'simple' - assert shell_quote_win( - 'roof/\\isoprojection') == 'roof/\\isoprojection' - assert shell_quote_win('with space') == '"with space"' - assert shell_quote_win('embedded"quote') == '"embedded""quote"' - assert shell_quote_win( - 'a"b""c\\d\\"e\\\\') == '"a""b""""c\\d\\\\""e\\\\\\\\"' - - def test_executable_exists(self): - assert os.path.exists(self.deno_exe) - - -if __name__ == '__main__': - run_tests() |