diff options
Diffstat (limited to 'test/terminal-here-test.el')
| -rw-r--r-- | test/terminal-here-test.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/terminal-here-test.el b/test/terminal-here-test.el index e30a238..24f5ca4 100644 --- a/test/terminal-here-test.el +++ b/test/terminal-here-test.el @@ -55,3 +55,11 @@ (mock (vc-root-dir) => "vc-root") (mock (terminal-here-launch-in-directory "vc-root")) (terminal-here-project-launch))) + +(ert-deftest no-root-found () + (with-mock + (mock (projectile-project-root) => nil) + (mock (vc-root-dir) => nil) + (should-error + (terminal-here-project-launch) + :type 'user-error))) |
