-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-time.lisp
executable file
·48 lines (43 loc) · 1009 Bytes
/
test-time.lisp
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
43
44
45
46
47
48
;#!/usr/local/bin/sbcl --script
;;;; Hey, Emacs, this is a -*- Mode: Lisp; Syntax: Common-Lisp -*- file!
;;;;
;;;; Lisp...not just beautiful, but strangely beautiful.
;;;; -- Paul Graham
;;;;
;;;; Name: test-time.lisp
;;;;
;;;; Started: Fri Apr 17 02:15:59 2020
;;;; Modifications:
;;;;
;;;; Purpose:
;;;;
;;;;
;;;;
;;;; Calling Sequence:
;;;;
;;;;
;;;; Inputs:
;;;;
;;;; Outputs:
;;;;
;;;; Example:
;;;;
;;;; Notes:
;;;;
;;;;
(load "/home/slytobias/lisp/packages/time.lisp")
(load "/home/slytobias/lisp/packages/test.lisp")
(in-package :time)
(use-package :test)
(deftest test-julian ()
(check
(= (julian 1 1 2020) 2458850)
(= (julian 2 1 2020) 2458851)
(= (+ 1 (julian 1 1 2020)) (julian (+ 1 1) 1 2020))
(= (+ 10 (julian 1 1 2020)) (julian (+ 1 10) 1 2020))
(= (julian 16 4 2020) 2458956)))
(deftest test-day-of-year ()
(check
(= (day-of-year 1 1 2020) 1)
(= (day-of-year 31 12 2020) 366)
(= (day-of-year 31 12 2019) 365)))