Skip to content
Snippets Groups Projects
Commit 9ad3891d authored by Robert Strandh's avatar Robert Strandh Committed by Daniel Kochmański
Browse files

Added test for multiple occurrences of option :NICKNAMES.

parent b653b80f
No related branches found
No related tags found
No related merge requests found
......@@ -59,6 +59,31 @@
))))))
0)
;;; Test :nicknames option with more than one occurrence.
;;; Do not check use-list, because it is implementation dependent
;;; Try several ways of specifying a nickname.
(deftest defpackage.2b
(loop
for n in '("I" #:|I| #\I) count
(not
(ignore-errors
(progn
(safely-delete-package "H")
(let ((p (ignore-errors
(eval `(defpackage "H"
(:nicknames ,n)
(:nicknames "J"))))))
(and
(packagep p)
(equal (package-name p) "H")
(equal (package-used-by-list p) nil)
(equal (sort (copy-list (package-nicknames p))
#'string<)
'("I" "J"))
(equal (package-shadowing-symbols p) nil)
(null (documentation p t))))))))
0)
;; Test defpackage with documentation option
;; Do not check use-list, because it is implementation dependent
(deftest defpackage.3
......
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