diff --git a/pollen/private/ts.rktd b/pollen/private/ts.rktd index 605c3f6..8ae60a1 100644 --- a/pollen/private/ts.rktd +++ b/pollen/private/ts.rktd @@ -1 +1 @@ -1559693735 +1559745031 diff --git a/pollen/test/test-runtime-path.rkt b/pollen/test/test-runtime-path.rkt new file mode 100644 index 0000000..a31e898 --- /dev/null +++ b/pollen/test/test-runtime-path.rkt @@ -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)