Regenerated documentation, but still no new tests.

This commit is contained in:
Simon Brooke 2022-12-31 09:10:25 +00:00
parent c18a0a5b8e
commit 1cd7f1fc1a
24 changed files with 143 additions and 70 deletions

View file

@ -302,11 +302,12 @@
(defn activity-faults
[x]
(concat-non-empty (persistent-object-faults x)
(activity-type-faults x)
(list
(when-not
(has-activity-type? x)
(make-fault-object :must :not-activity-type))
(when-not (string? (:summary x)) (make-fault-object :should :no-summary)))))
(concat-non-empty
(persistent-object-faults x)
(activity-type-faults x)
(list
(when-not
(has-activity-type? x)
(make-fault-object :must :not-activity-type))
(when-not (string? (:summary x)) (make-fault-object :should :no-summary)))))

View file

@ -0,0 +1,2 @@
(ns dog-and-duck.quack.picky.required-properties)