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
baf3c8a2
Commit
baf3c8a2
authored
Mar 10, 2005
by
pfdietz
Browse files
More tests for typep on type specs of the form (simple-string ...)
parent
4c4a2e40
Changes
1
Show whitespace changes
Inline
Side-by-side
ansi-tests/simple-string.lsp
View file @
baf3c8a2
...
...
@@ -63,3 +63,23 @@
(typep* (make-array '(12) :element-type nil) 'simple-string)
t)
(deftest simple-estring.14
(typep* "abc" '(simple-string))
t)
(deftest simple-estring.15
(typep* "abc" '(simple-string *))
t)
(deftest simple-estring.16
(typep* "abc" '(simple-string 3))
t)
(deftest simple-estring.17
(typep* "abc" '(simple-string 2))
nil)
(deftest simple-estring.18
(typep* "abc" '(simple-string 4))
nil)
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