mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 05:39:17 +02:00
26 lines
349 B
Scheme
26 lines
349 B
Scheme
;;;; Cyclone Scheme
|
|
;;;; https://github.com/justinethier/cyclone
|
|
;;;;
|
|
;;;; Copyright (c) 2014-2021, Justin Ethier
|
|
;;;; All rights reserved.
|
|
;;;;
|
|
;;;; This module contains unit tests for (cyclone test)
|
|
;;;;
|
|
|
|
(import
|
|
(scheme base)
|
|
(cyclone test))
|
|
|
|
(test-group
|
|
"assert"
|
|
(test-assert #t)
|
|
)
|
|
|
|
(test-group
|
|
"not"
|
|
(test-not #f)
|
|
)
|
|
|
|
(test-exit)
|
|
|
|
|