-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtest.clj
More file actions
35 lines (33 loc) · 706 Bytes
/
test.clj
File metadata and controls
35 lines (33 loc) · 706 Bytes
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
(ns test
(:require
magic.test.literals
magic.test.data-structures
magic.test.string
magic.test.logic
magic.test.control
magic.test.numbers
magic.test.interop
magic.test.dynamic
magic.test.special
magic.test.proxy
magic.test.reify
magic.test.fn
magic.test.letfn)
(:use clojure.test))
(defn all []
(run-tests
'magic.test.literals
'magic.test.data-structures
'magic.test.string
'magic.test.logic
'magic.test.control
'magic.test.numbers
'magic.test.interop
'magic.test.special
'magic.test.dynamic
'magic.test.proxy
'magic.test.reify
'magic.test.fn
'magic.test.letfn))
(defn run [& namespaces]
(apply run-tests namespaces))