Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
ansi-test
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mark Evenson
ansi-test
Commits
9ad3891d
Commit
9ad3891d
authored
10 years ago
by
Robert Strandh
Committed by
Daniel Kochmański
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added test for multiple occurrences of option :NICKNAMES.
parent
b653b80f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
defpackage.lsp
+25
-0
25 additions, 0 deletions
defpackage.lsp
with
25 additions
and
0 deletions
defpackage.lsp
+
25
−
0
View file @
9ad3891d
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment