summaryrefslogtreecommitdiff
path: root/bog-tests.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2014-02-12 00:52:28 -0500
committerKyle Meyer <kyle@kyleam.com>2014-02-12 00:52:28 -0500
commit3fd373e35aa56ec0034d7cc33d56d6bd76e423c3 (patch)
treeb7ae819b9e16361c9bae717e30303610823f073d /bog-tests.el
parentd890d0a3e1dfbde16890c0ff113a5ee31a9389c4 (diff)
downloadbog-3fd373e35aa56ec0034d7cc33d56d6bd76e423c3.tar.gz
TST: Remove use of obsolete `flet` in tests
Diffstat (limited to 'bog-tests.el')
-rw-r--r--bog-tests.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/bog-tests.el b/bog-tests.el
index 822238a..b6d8ef0 100644
--- a/bog-tests.el
+++ b/bog-tests.el
@@ -111,26 +111,26 @@
;; `bog-citekey-action'
(ert-deftest bog-citekey-action-on-heading ()
- (let ((citekey "name2010word"))
+ (let ((citekey "name2010word")
+ (action '(lambda (ck) ck)))
(with-temp-buffer
(insert (format "\n* top level\n\n** %s\n\nsome text\n"
citekey))
(org-mode)
(show-all)
(re-search-backward bog-citekey-format)
- (flet ((funcall (action citekey) citekey))
- (should (equal (bog-citekey-action nil nil nil) citekey))))))
+ (should (equal (bog-citekey-action action nil nil) citekey)))))
(ert-deftest bog-citekey-action-on-in-text-citekey ()
- (let ((citekey "name2010word"))
+ (let ((citekey "name2010word")
+ (action '(lambda (ck) ck)))
(with-temp-buffer
(insert (format "\n* top level\n\n** other2000key\n\nsome text and %s\n"
citekey))
(org-mode)
(show-all)
(re-search-backward bog-citekey-format)
- (flet ((funcall (action citekey) citekey))
- (should (equal (bog-citekey-action nil nil nil) citekey))))))
+ (should (equal (bog-citekey-action action nil nil) citekey)))))
(ert-deftest bog-citekey-action-no-citekey ()
(with-temp-buffer