A website built in Common Lisp using Caveman2 as its framework. It is based on a collection of tutorials written by hyotang666. Those tutorials are based on chapters from the book 'Basic Ruby on Rails'. hyotang666 ported the Ruby code to Common Lisp.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
406 B

(defsystem "rails-to-caveman-test"
:defsystem-depends-on ("prove-asdf")
:author "Craig Oates"
:license ""
:depends-on ("rails-to-caveman"
"prove")
:components ((:module "tests"
:components
((:test-file "rails-to-caveman"))))
:description "Test system for rails-to-caveman"
:perform (test-op (op c) (symbol-call :prove-asdf :run-test-system c)))