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.
7 lines
297 B
Racket
7 lines
297 B
Racket
#lang racket/base
|
|
(require "utils.rkt" "wrap.rkt" "quads-typed.rkt" "world.rkt" racket/list racket/format)
|
|
(require rackunit)
|
|
|
|
(check-equal? (join-attrs (list (box '(width 10)) (box #f "foobar") (hash 'x 10) (list 'width 20)))
|
|
(list (cons 'width 10) (cons 'x 10) (cons 'width 20)))
|