added missing tests

This commit is contained in:
Spencer Florence 2015-08-10 18:40:07 -05:00
parent 53a1b8716f
commit b6100a906b
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,4 @@
#lang racket
(begin-for-syntax
(module t racket
1))

View File

@ -0,0 +1,5 @@
#lang racket
(begin-for-syntax
(require racket/lazy-require)
(lazy-require [racket/syntax (format-symbol)])
(void (format-symbol "a~a" 'a)))