X-Git-Url: https://jxself.org/git/?p=8sync.git;a=blobdiff_plain;f=tests%2Ftest-agenda.scm;h=6918c992818c625336fe4febfe41d6fa3d448dfa;hp=691310905b29bbdc7b82b8451e9e62ba2753677f;hb=fbb1776a35db50db19fc158381e74361d6e9b789;hpb=a9e932ba04d488a5492afe0dd6d88337f4b01686;ds=sidebyside diff --git a/tests/test-agenda.scm b/tests/test-agenda.scm index 6913109..6918c99 100644 --- a/tests/test-agenda.scm +++ b/tests/test-agenda.scm @@ -394,9 +394,34 @@ "in here now!\n" "Well that was fun :)\n"))) +;; Make sure catching tools work + +(let ((speaker (speak-it)) + (catch-result #f)) + (catch-8sync + (begin + (speaker "hello") + (throw '%8sync-caught-error + 'my-orig-key '(apple orange banana) '(*fake-stack* *fake-stack* *fake-stack*)) + (speaker "no goodbyes")) + ('some-key + (lambda (stacks . rest) + (speaker "should not happen"))) + ('my-orig-key + (lambda (stacks fruit1 fruit2 fruit3) + (set! catch-result + `((fruit1 ,fruit1) + (fruit2 ,fruit2) + (fruit3 ,fruit3)))))) + (test-equal (speaker) '("hello")) + (test-equal catch-result '((fruit1 apple) + (fruit2 orange) + (fruit3 banana)))) + ;; End tests (test-end "test-agenda") +;; @@: A better way to handle this at the repl? (test-exit)