Add PROGF to export, tests.
[cl-mock.git] / tests / functions.lisp
index 4b0a000..c3219b2 100644 (file)
@@ -4,6 +4,10 @@
 
 (in-suite cl-mock)
 
+(def-test progf.calls-binding ()
+  (progf '(foo) (list (lambda () 23))
+    (is (eql 23 (foo)))))
+
 (def-test dflet.calls-binding ()
   (dflet ((foo () 23))
     (is (eql 23 (foo)))))