Skip to content

Commit

Permalink
Update source, eask-core.el
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Dec 13, 2024
1 parent e570b7f commit 6d4255e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions eask-core.el
Original file line number Diff line number Diff line change
Expand Up @@ -3585,6 +3585,16 @@ Modified from function `ecukes-cli/run'."
(ecukes-run files))

;; ~/lisp/test/ert-runner.el
(defun eask-test-ert-runner--run (fnc &rest args)
"Run around function `ert-runner/run'.
Arguments FNC and ARGS are used for advice `:around'.
Handle the argument ARGS when command arguments are specified."
(let* ((patterns (eask-args))
(files (eask-expand-file-specs patterns)))
(setq args files))
(apply fnc args))

;; ~/lisp/test/ert.el
(defvar eask-test-ert--message-loop nil
Expand Down

0 comments on commit 6d4255e

Please sign in to comment.