summaryrefslogtreecommitdiff
path: root/test/terminal-here-test.el
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2018-02-14 23:15:24 +0300
committerOleg Pykhalov <go.wigust@gmail.com>2018-02-15 18:35:31 +0300
commit7946bba0f487ffccafff07874df34894bdd38639 (patch)
tree261de7eaaffdd6d928e3db9b998c871276b99bcf /test/terminal-here-test.el
parentAdd remote directory support (diff)
downloademacs-terminal-here-7946bba0f487ffccafff07874df34894bdd38639.tar.gz
Find executable for a terminal
* terminal-here.el (terminal-here-default-terminal-command): Find executable for terminal.
Diffstat (limited to 'test/terminal-here-test.el')
-rw-r--r--test/terminal-here-test.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/terminal-here-test.el b/test/terminal-here-test.el
index 849f18d..02c2864 100644
--- a/test/terminal-here-test.el
+++ b/test/terminal-here-test.el
@@ -16,7 +16,8 @@
(ert-deftest linux-default-command ()
(with-terminal-here-mocks
- (mock (start-process "x-terminal-emulator" * "x-terminal-emulator"))
+ (mock (start-process (terminal-here-find-terminal) *
+ (terminal-here-find-terminal)))
(let ((system-type 'gnu/linux))
(custom-reevaluate-setting 'terminal-here-terminal-command)
(terminal-here-launch-in-directory "adir"))))
@@ -106,6 +107,6 @@
(setq launch-command command))))
(validate-setq terminal-here-command-flag "-k")
(terminal-here-launch-in-directory "/ssh:david@pi:/home/pi/")
- (should (equal (car launch-command) "x-terminal-emulator"))
+ (should (equal (car launch-command) (terminal-here-find-terminal)))
(should (equal (cadr launch-command) "-k"))
(should (equal (caddr launch-command) "ssh"))))