racket/collects/tests/r6rs/io/ports.ss
Matthew Flatt 53bc658226 r6rs tests and repairs
svn: r8905
2008-03-06 18:56:31 +00:00

16 lines
257 B
Scheme

#!r6rs
(library (tests r6rs io ports)
(export run-io-ports-tests)
(import (rnrs)
(tests r6rs test))
(define (run-io-ports-tests)
(test (eqv? (eof-object) (eof-object)) #t)
(test (eq? (eof-object) (eof-object)) #t)
;;
))