miniblog

Miniblog: A command-line static blog system in Common Lisp
Log | Files | Refs | README | LICENSE

packages.lisp (459B)


      1 (in-package :cl-user)
      2 
      3 (defpackage :miniblog/tests
      4   (:use :cl :fiveam)
      5   (:import-from :local-time :encode-timestamp :timestamp= :timestamp-difference
      6                 :+utc-zone+ :*default-timezone*)
      7   (:import-from :html5-parser :parse-html5-fragment :node-first-child :node-name
      8                 :node-value)
      9   (:export #:run-miniblog-tests))
     10 
     11 (in-package :miniblog/tests)
     12 
     13 (def-suite miniblog-test)
     14 
     15 (defun run-miniblog-tests ()
     16   (debug! 'miniblog-test))