1
0
Fork 0
Browse Source

add Ratify to the testing system.

At the moment, this is test the timestamps returned from the API. If
Ratify can parse the timestamps, it returns them. If it can't parse
them, it returns NIL.
unstable
Craig Oates 3 years ago
parent
commit
c9559f0a67
  1. 3
      ritherdon-rest.asd
  2. 4
      tests/package.lisp

3
ritherdon-rest.asd

@ -23,7 +23,8 @@
:version "0.0.1"
:serial t
:depends-on (:ritherdon-rest
:fiveam)
:fiveam
:ratify)
:pathname "tests/"
:components ((:file "package")
(:file "main"))

4
tests/package.lisp

@ -1,7 +1,9 @@
;;;; tests/package.lisp
(defpackage #:ritherdon-rest-tests
(:use #:cl #:fiveam)
(:use #:cl
#:fiveam
#:ratify)
(:export #:run!
#:all-tests
#:test-quasi))