blob: ea941983d25fb1ea38689d2ac93e5daca6a6b802 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
(defun org-fc-test-fixture (name)
"Return the full path of fixture file NAME."
(expand-file-name
name
(expand-file-name "tests/" org-fc-source-path)))
(defun org-fc-test-index-ids (index)
"Return a list of IDs in INDEX."
(mapcar
(lambda (card) (plist-get card :id))
index))
(provide 'org-fc-test-helper)
|