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.
|
#lang racket/base
|
|
(require yaragg/examples/hide-and-splice
|
|
yaragg/support
|
|
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")) |