aboutsummaryrefslogtreecommitdiff
path: root/examples.lisp
blob: df3de197f47aea49c844e1c9887dce499797ce88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
(defpackage :testiere.examples
  (:use #:cl)
  (:import-from #:testiere
                #:defun+
                #:defmethod+))

(in-package :testiere.examples)

(defun+ fibble (x y &key (z 10))
  "Hey, a docstring."
  :tests
  (= (1 2) 13)
  (>= (1 2 :z 1) -5)
  (:outputp (0 0 :z 0) (lambda (result) (equalp result 0)))
  (:fails ("strings" "ain't" :z "numbers"))
  :end
  (+ x y z))


(defvar *count*)

(defun+ increment-count ()
  "Increments the *count* variable."
  :tests
  (:with-bindings ((*count* 4))
    (:afterp () (lambda () (= *count* 5)))
    (= () 6)
    (:outputp () (lambda (x) (= x 7))))
  :end
  (incf *count*))


(defun just-a-function ()
  (print "Just a function."))

(defun+ call-just-a-function ()
  "Calls JUST-A-FUNCTION."
  :tests
  (:with-stubs ((just-a-function () (print "TEMP JUST-A-FUNCTION.")))
    (equal () "TEMP JUST-A-FUNCTION."))
  :end
  (just-a-function))