aboutsummaryrefslogtreecommitdiffstats
path: root/test/lisp/progmodes/python-tests.el
diff options
context:
space:
mode:
Diffstat (limited to 'test/lisp/progmodes/python-tests.el')
-rw-r--r--test/lisp/progmodes/python-tests.el14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/lisp/progmodes/python-tests.el b/test/lisp/progmodes/python-tests.el
index f76ecbbd3d4..4b022fc815c 100644
--- a/test/lisp/progmodes/python-tests.el
+++ b/test/lisp/progmodes/python-tests.el
@@ -2522,20 +2522,6 @@ if x:
2522 (should (string= (python-shell-internal-get-process-name) 2522 (should (string= (python-shell-internal-get-process-name)
2523 (format "%s[%s]" python-shell-internal-buffer-name (buffer-name)))))) 2523 (format "%s[%s]" python-shell-internal-buffer-name (buffer-name))))))
2524 2524
2525(ert-deftest python-shell-calculate-command-1 ()
2526 "Check the command to execute is calculated correctly.
2527Using `python-shell-interpreter' and
2528`python-shell-interpreter-args'."
2529 (skip-unless (executable-find python-tests-shell-interpreter))
2530 (let ((python-shell-interpreter (executable-find
2531 python-tests-shell-interpreter))
2532 (python-shell-interpreter-args "-B"))
2533 (should (string=
2534 (format "%s %s"
2535 (shell-quote-argument python-shell-interpreter)
2536 python-shell-interpreter-args)
2537 (python-shell-calculate-command)))))
2538
2539(ert-deftest python-shell-calculate-pythonpath-1 () 2525(ert-deftest python-shell-calculate-pythonpath-1 ()
2540 "Test PYTHONPATH calculation." 2526 "Test PYTHONPATH calculation."
2541 (let ((process-environment '("PYTHONPATH=/path0")) 2527 (let ((process-environment '("PYTHONPATH=/path0"))