bldc/tests/test_move_to_flash_6.lisp

11 lines
143 B
Common Lisp

(defun f (x)
(match x
( apa 1 )
( bepa 2 )))
(move-to-flash f)
(check (and (= (f 'apa) 1)
(= (f 'bepa) 2)))