From a513f25b4ae5c1fe8f08e7f9a128b899da637dca Mon Sep 17 00:00:00 2001 From: Adam Porter Date: Tue, 31 Dec 2019 21:13:50 -0600 Subject: [PATCH] Tests: Declare buttercup dependency Used in makem.sh to parse test dependencies. --- tests/test-org-ql.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test-org-ql.el b/tests/test-org-ql.el index 60a2cb1..55ff334 100644 --- a/tests/test-org-ql.el +++ b/tests/test-org-ql.el @@ -3,6 +3,7 @@ ;; Copyright (C) 2019 Adam Porter ;; Author: Adam Porter +;; Package-Requires: ((buttercup)) ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by @@ -66,6 +67,8 @@ (defun org-ql-test--format-result--query-preamble (sexp) (-let* (((query preamble) (eval sexp)) (preamble (when preamble + ;; NOTE: `xr' is used here, but this function is only called by + ;; interactive helper commands in this file, not when running tests. (xr preamble 'brief)))) (format "`(%S ,(rx %S))" query preamble)))