aboutsummaryrefslogtreecommitdiff
path: root/tests/test-transcription-status-and-commands.el
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-transcription-status-and-commands.el')
-rw-r--r--tests/test-transcription-status-and-commands.el9
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/test-transcription-status-and-commands.el b/tests/test-transcription-status-and-commands.el
index 90841e70..7c796de0 100644
--- a/tests/test-transcription-status-and-commands.el
+++ b/tests/test-transcription-status-and-commands.el
@@ -179,13 +179,18 @@
(should-error (cj/transcribe-audio-at-point) :type 'user-error)))
(ert-deftest test-tx-transcribe-audio-at-point-normal-delegates ()
- "Normal: with a file at point, delegates to `cj/transcribe-audio'."
+ "Normal: with a file at point, delegates to `cj/transcribe-media'.
+
+`cj/transcribe-audio-at-point' is now a `defalias' for
+`cj/transcribe-media-at-point', which hands off to
+`cj/transcribe-media' (no longer the old audio-only command). The
+stub still pins behavior by name."
(let ((handed-off nil))
(cl-letf (((symbol-function 'derived-mode-p)
(lambda (&rest modes) (memq 'dired-mode modes)))
((symbol-function 'dired-get-filename)
(lambda (&rest _) "/tmp/recording.wav"))
- ((symbol-function 'cj/transcribe-audio)
+ ((symbol-function 'cj/transcribe-media)
(lambda (f) (setq handed-off f))))
(cj/transcribe-audio-at-point))
(should (equal handed-off "/tmp/recording.wav"))))