-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathchronicity-test.asd
34 lines (29 loc) · 1015 Bytes
/
chronicity-test.asd
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
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
;;; chronicity-test.asd
;;; See the LICENSE file for licensing information.
(cl:defpackage #:chronicity-test-system
(:use #:cl #:asdf))
(cl:in-package #:chronicity-test-system)
(defsystem #:chronicity-test
:author "Chaitanya Gupta"
:maintainer "Chaitanya Gupta"
:depends-on ("chronicity" "lisp-unit")
:components
((:module test
:serial t
:components
((:file "packages")
(:file "utils")
(:file "numerize")
(:file "datetime")
(:file "repeater-day-name")
(:file "repeater-fortnight")
(:file "repeater-hour")
(:file "repeater-minute")
(:file "repeater-month-name")
(:file "repeater-month")
(:file "repeater-time")
(:file "repeater-week")
(:file "repeater-weekend")
(:file "repeater-year")
(:file "parsing")))))