We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f40fc73 commit d278dc1Copy full SHA for d278dc1
irteus/test/read-line.l
@@ -16,5 +16,12 @@
16
;; (assert (= (test-read-line 8192) 8192) "read-line with ~A char" 8192) ;; tempolarily comment out
17
)
18
19
+(deftest test-read-gensym
20
+ (let ((g (gensym))
21
+ (*print-circle* t))
22
+ (assert
23
+ (apply #'eq (read-from-string (format nil "~S" (list g g))))
24
+ "Unable to read uninterned symbol")))
25
+
26
(run-all-tests)
27
(exit)
0 commit comments