runtime path test
parent
6fa00d65d8
commit
925c4aa88a
@ -1 +1 @@
|
|||||||
1559693735
|
1559745031
|
||||||
|
@ -0,0 +1,13 @@
|
|||||||
|
#lang racket/base
|
||||||
|
(require racket/runtime-path rackunit)
|
||||||
|
|
||||||
|
(module m pollen
|
||||||
|
(require racket/runtime-path)
|
||||||
|
(define-runtime-path x "x")
|
||||||
|
(provide x))
|
||||||
|
|
||||||
|
(require (submod "." m))
|
||||||
|
|
||||||
|
(define-runtime-path y "x")
|
||||||
|
|
||||||
|
(check-equal? x y)
|
Loading…
Reference in New Issue