A => feather-test.lisp +12 -0
@@ 0,0 1,12 @@
+(in-package :cl-user)
+
+;; Configure ASDF to find the project systems
+(load "src/prep-quicklisp.lisp")
+
+;; Load the server
+(ql:quickload :qlot)
+(qlot:quickload :feather/test)
+
+;; Go
+(5am:run-all-tests)
+(quit)
A => feather.lisp +11 -0
@@ 0,0 1,11 @@
+(in-package :cl-user)
+
+;; Configure ASDF to find the project systems
+(load "src/prep-quicklisp.lisp")
+
+;; Load the server
+(ql:quickload :qlot)
+(qlot:quickload :feather)
+
+;; Go
+(feather:main nil)