From c9559f0a670c94bef9ff464e619997769d9c954c Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Fri, 2 Jul 2021 16:41:18 +0100 Subject: [PATCH] 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. --- ritherdon-rest.asd | 3 ++- tests/package.lisp | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ritherdon-rest.asd b/ritherdon-rest.asd index 20579a5..d789c89 100644 --- a/ritherdon-rest.asd +++ b/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")) diff --git a/tests/package.lisp b/tests/package.lisp index da1a28a..08b4fcc 100644 --- a/tests/package.lisp +++ b/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))