add first primitive (dummy) version of test facility
This commit is contained in:
parent
7c321b76aa
commit
9960303469
2 changed files with 14 additions and 1 deletions
|
@ -8,7 +8,8 @@
|
|||
:homepage "https://www.cyberconcepts.org"
|
||||
:description ""
|
||||
:depends-on (:str)
|
||||
:components ((:file "forge/forge"))
|
||||
:components ((:file "forge/forge")
|
||||
(:file "test/test-forge"))
|
||||
|
||||
:long-description "scopes: generic data processingg facilities")
|
||||
;;#.(uiop:read-file-string
|
||||
|
|
12
test/test-forge.lisp
Normal file
12
test/test-forge.lisp
Normal file
|
@ -0,0 +1,12 @@
|
|||
;;; cl-scopes/test/test-forge
|
||||
|
||||
;;;; testing facility for scopes/forge
|
||||
|
||||
(defpackage :scopes/test-forge
|
||||
(:use :common-lisp :scopes/forge)
|
||||
(:export #:run))
|
||||
|
||||
(in-package :scopes/test-forge)
|
||||
|
||||
(defun run ()
|
||||
(scf:hello))
|
Loading…
Add table
Reference in a new issue