coleslaw/tests/cli.lisp

24 lines
532 B
Common Lisp
Raw Normal View History

2019-10-26 19:13:50 -04:00
(in-package :coleslaw-tests)
(plan 2)
(let ((*default-pathname-defaults*
(pathname
(format nil "~a/"
(uiop:run-program `("mktemp" "-d")
:output `(:string :stripped t))))))
(coleslaw-cli:setup)
(let ((file (coleslaw-cli:new)))
(ok (probe-file file)))
(coleslaw-cli:generate)
(print (format nil "~adeploy/index.html" *default-pathname-defaults*))
(ok (probe-file (format nil "~adeploy/index.html" *default-pathname-defaults*))))
(finalize)