Add PROGF to export, tests.
[cl-mock.git] / tests / functions.lisp
index d3acdc3..c3219b2 100644 (file)
@@ -2,6 +2,12 @@
 
 (in-package #:cl-mock-tests)
 
+(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)))))