compatibility/collects/tests/racket/structlib.rkt
Matthew Flatt a9c5ca02a2 move tests/mzscheme to tests/racket
original commit: 882b7dce0eaf92eab6fe45565ca6c1a09aa26027
2010-04-27 18:28:39 -06:00

41 lines
1.4 KiB
Racket

(load-relative "loadtest.rkt")
(Section 'structlib)
(require mzlib/struct)
(let* ([now (seconds->date (current-seconds))]
[v (modulo (add1 (date-second now)) 60)])
(test #t equal? now (copy-struct date now))
(test #f equal? now (copy-struct date now (date-second v)))
(test v date-second (copy-struct date now (date-second v)))
(test (date-year now) date-year (copy-struct date now (date-second v))))
(err/rt-test (copy-struct date 10))
(err/rt-test (copy-struct date 10 (date-second 0)))
(syntax-test #'copy-struct)
(syntax-test #'(copy-struct))
(syntax-test #'(copy-struct date))
(syntax-test #'(copy-struct date 10 foo))
(syntax-test #'(copy-struct date 10 . foo))
(syntax-test #'(copy-struct date 10 (foo)))
(syntax-test #'(copy-struct date 10 (foo . bar)))
(syntax-test #'(copy-struct x 10))
(syntax-test #'(copy-struct date 10 (date-foo 12)))
(syntax-test #'(copy-struct date 10 (date-second 12) (date-yeeer 10)))
(syntax-test #'(copy-struct date 10 (date-second 12) (date-second 10)))
(require (only-in mzscheme [date-second mz:date-second]))
(syntax-test #'(copy-struct date 10 (date-second 12) (mz:date-second 10)))
(let ([v (let ()
(define-struct a (b c) #:inspector (make-inspector))
;; This `copy-struct' is expanded in an internal-defn context
(copy-struct a (make-a 1 2) (a-c 13)))])
(test #(struct:a 1 13) struct->vector v))
(report-errs)