Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Karsten Poeck
ansi-test
Commits
e7d8605d
Commit
e7d8605d
authored
Jul 12, 2004
by
pfdietz
Browse files
Add error tests for set-pprint-dispatch
parent
72e1f77b
Changes
1
Hide whitespace changes
Inline
Side-by-side
ansi-tests/pprint-dispatch.lsp
View file @
e7d8605d
...
...
@@ -246,5 +246,27 @@
program-error)
t)
(deftest set-pprint-dispatch.error.1
(signals-error (let ((*print-pprint-dispatch* (copy-pprint-dispatch nil)))
(set-pprint-dispatch))
program-error)
t)
(deftest set-pprint-dispatch.error.2
(signals-error (let ((*print-pprint-dispatch* (copy-pprint-dispatch nil)))
(set-pprint-dispatch t))
program-error)
t)
(deftest set-pprint-dispatch.error.3
(signals-error (let ((table (copy-pprint-dispatch nil)))
(set-pprint-dispatch t 'identity 0 table nil))
program-error)
t)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment