bldc/tests/test_move_to_flash_4.lisp

9 lines
113 B
Common Lisp

(defun test (a b)
(cond
((= a 0) a)
(t b)
))
(move-to-flash test)
(check (= (test 10 2) 2))