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.
9 lines
288 B
Racket
9 lines
288 B
Racket
6 years ago
|
#lang racket/base
|
||
3 years ago
|
(require yaragg/examples/hide-and-splice
|
||
|
yaragg/support
|
||
6 years ago
|
rackunit)
|
||
|
|
||
|
;; check that an id with both a splice and hide is handled correctly
|
||
|
|
||
|
(check-equal? (parse-to-datum "xxx") '(top ("x" "x" "x")))
|
||
|
(check-equal? (parse-to-datum "yyy") '(top "y" "y" "y"))
|