This commit is contained in:
parent
0870cb1fa5
commit
e4339cb64a
2 changed files with 14 additions and 6 deletions
12
i-ching.el
12
i-ching.el
|
@ -865,17 +865,21 @@ Provided by Randomness and Integrity Services Ltd. via https://www.random.org/"
|
|||
The hexagram can be entered as a string, or by number."
|
||||
(interactive "sHexagram number? " hexagram)
|
||||
(let ((hexagram-number
|
||||
(pcase hexagram
|
||||
((pred numberp) hexagram)
|
||||
((pred i-ching-hexagram-p)
|
||||
(cond
|
||||
((i-ching-hexagram-p hexagram)
|
||||
(i-ching-hexagram-to-number hexagram))
|
||||
(_ (error "Not a hexagram symbol or number")))))
|
||||
((numberp hexagram) hexagram)
|
||||
((stringp hexagram)
|
||||
(if (numberp (string-to-number hexagram))
|
||||
(string-to-number hexagram)))
|
||||
(t (error "Not a hexagram symbol or number")))))
|
||||
(format "%s\n\n%s\n\nJudgment: %s\n\nImage: %s\n\n"
|
||||
(i-ching-number-to-hexagram hexagram-number)
|
||||
(i-ching-number-to-description hexagram-number)
|
||||
(i-ching-number-to-judgment hexagram-number)
|
||||
(i-ching-number-to-image hexagram-number))))
|
||||
|
||||
|
||||
;; querying the I Ching
|
||||
|
||||
;;;###autoload
|
||||
|
|
6
tests.el
6
tests.el
|
@ -76,7 +76,11 @@
|
|||
|
||||
(ert-deftest i-ching-interprets ()
|
||||
(should (stringp (i-ching-interpretation 49)))
|
||||
(should-not (seq-empty-p (i-ching-interpretation 49))))
|
||||
(should (stringp (i-ching-interpretation "23")))
|
||||
(should (stringp (i-ching-interpretation "䷖")))
|
||||
(should-not (seq-empty-p (i-ching-interpretation 49)))
|
||||
(should-not (seq-empty-p (i-ching-interpretation "23")))
|
||||
(should-not (seq-empty-p (i-ching-interpretation "䷖"))))
|
||||
|
||||
(ert-deftest i-ching-queries ()
|
||||
(should (stringp (i-ching-query-string)))
|
||||
|
|
Loading…
Reference in a new issue