aboutsummaryrefslogtreecommitdiffstats
path: root/Lisp/asdf/test/test4.script
blob: e0ca85983f32604a01865b2b50f330d0d890708a (plain)
1
2
3
4
5
6
7
8
;;; -*- Lisp -*-
(load "../asdf")
(setf asdf:*central-registry* '(*default-pathname-defaults*))
(in-package :asdf)
(assert (not (component-property (find-system 'test3) :foo)))
(assert (equal (component-property (find-system 'test3) :prop1) "value"))
(setf (component-property (find-system 'test3) :foo) "bar")
(assert (equal (component-property (find-system 'test3) :foo) "bar"))