Changeset 14857 for trunk/abcl/test/lisp/abcl/misc-tests.lisp
- Timestamp:
- 09/04/16 07:01:02 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/test/lisp/abcl/misc-tests.lisp
r12935 r14857 110 110 (values 42 2)))))) 111 111 42 2) 112 113 (deftest string-output-stream.seekable 114 (string= "Goodbye, World! Something." 115 (let ((stream (make-string-output-stream))) 116 (write-string "Hello, World! Something." stream) 117 (file-position stream :start) 118 (write-string "Goodbye, World!" stream) 119 (get-output-stream-string stream))) 120 T)
Note: See TracChangeset
for help on using the changeset viewer.