Skip to content
Snippets Groups Projects
Commit 987cfcc7 authored by Attila Lendvai's avatar Attila Lendvai
Browse files

follow asdf changes

Ignore-this: aa004ca68ad9180237512e1cab94aa3d

darcs-hash:98ac3f80764d34ad5d514cfed87ca9413be8feae
parent 7281042c
No related branches found
No related tags found
No related merge requests found
......@@ -2,14 +2,14 @@
(defsystem :rfc2388-binary
:components ((:static-file "rfc2388-binary.asd")
(:module :source
(:module "source"
:components ((:file "packages")
(:file "utils" :depends-on ("packages"))
(:file "api" :depends-on ("packages" "utils"))
(:file "parsing" :depends-on ("packages" "utils" "api"))))))
(defsystem :rfc2388-binary.test
:components ((:module :test
(defsystem :rfc2388-binary/test
:components ((:module "test"
:components ((:file "packages")
(:file "test" :depends-on ("packages")))))
:depends-on (:arnesi
......
......@@ -2,7 +2,7 @@
(in-package :cl-user)
(defpackage :rfc2388-binary.test
(defpackage :rfc2388-binary/test
(:use :common-lisp
:5am
:rfc2388-binary
......
;; -*- lisp -*-
(in-package :rfc2388-binary.test)
(in-package :rfc2388-binary/test)
(def-suite :rfc2388-binary)
(in-suite :rfc2388-binary)
(defparameter *test-data-dir*
(make-pathname :directory
(append (pathname-directory
#.(asdf:component-pathname (asdf:find-system :rfc2388-binary.test)))
'("test" "data"))))
(asdf:system-relative-pathname :rfc2388-binary/test "test/data/"))
(defun data-file (filename)
(merge-pathnames filename *test-data-dir*))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment