You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
typesetting/quad/tests-typed.rkt

7 lines
294 B
Racket

10 years ago
#lang racket/base
10 years ago
(require "utils-typed.rkt" "quads-typed.rkt" "world-typed.rkt" racket/list racket/format)
10 years ago
(require rackunit)
10 years ago
(check-equal? (join-attrs (list (box '(width 10)) (quad-attrs (box '(x 10))) (list 'width 20)))
10 years ago
(list (cons 'width 10) (cons 'x 10) (cons 'width 20)))