1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
;-*- Mode: Lisp -*-
;;;; Author: Paul Dietz
;;;; Created: Sun Mar 23 08:37:15 2003
;;;; Contains: Tests of CONTINUE restart and function
(in-package :cl-test)
(deftest continue.1
(restart-case
(progn (continue) 'bad)
(continue () 'good))
good)
(deftest continue.2
(let ((c1 (make-condition 'error))
(c2 (make-condition 'error)))
(restart-case
(with-condition-restarts
c1
(list (first (compute-restarts)))
(continue c2))
(continue () 'bad)
(continue () 'good)))
good)
(deftest continue.3
(restart-case
(progn (continue nil) 'bad)
(continue () 'good))
good)
(deftest continue.4
(let ((c1 (make-condition 'error))
(c2 (make-condition 'error)))
(restart-case
(with-condition-restarts
c1
(list (first (compute-restarts)))
(continue nil))
(continue () 'good)
(continue () 'bad)))
good)
(deftest continue.5
(let ((c1 (make-condition 'error))
(c2 (make-condition 'error)))
(with-condition-restarts
c1
(compute-restarts)
;; All conditions are now associated with c1
(continue c2)))
nil)
|