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.
15 lines
361 B
Racket
15 lines
361 B
Racket
#lang racket/base
|
|
|
|
(require yaragg/examples/start-and-atok
|
|
yaragg/support
|
|
rackunit)
|
|
|
|
;; make sure that "start" and "atok" work as terminals.
|
|
|
|
(check-equal? (parse-to-datum (list "start")) '(top "start"))
|
|
(check-equal? (parse-to-datum (list "atok")) '(top "atok"))
|
|
(check-equal? (parse-to-datum (list "start" "atok")) '(top "start" "atok"))
|
|
|
|
|
|
|