diff --git a/unstable/include.rkt b/unstable/include.rkt index 83304ef..a4fcf75 100644 --- a/unstable/include.rkt +++ b/unstable/include.rkt @@ -6,24 +6,6 @@ racket/match racket/function) "../define.rkt") -(module+ test - (require rackunit) - (module include-test racket/base - (require sugar/include) - (include-without-lang-line "source.rkt") - (provide included-symbol)) - - (require 'include-test) - (check-equal? included-symbol 'bar) - - (module no-lang-line-include-test racket/base - (require sugar/include) - (include-without-lang-line "no-lang-line-source.txt") - (provide no-lang-symbol)) - - (require 'no-lang-line-include-test) - (check-equal? no-lang-symbol 'bar)) - (provide+safe include-without-lang-line) (define-syntax (do-include stx) diff --git a/unstable/misc.rkt b/unstable/misc.rkt index f5058a1..448f487 100644 --- a/unstable/misc.rkt +++ b/unstable/misc.rkt @@ -1,5 +1,5 @@ #lang racket/base -(require "define.rkt" racket/set "coerce.rkt") +(require "../define.rkt" racket/set "../coerce.rkt") (define+provide+safe (bytecount->string bytecount)