Skip to content

Instantly share code, notes, and snippets.

@dyoo
Created January 28, 2013 21:33
Show Gist options
  • Save dyoo/4659253 to your computer and use it in GitHub Desktop.
Save dyoo/4659253 to your computer and use it in GitHub Desktop.
external test with submodule
#lang racket
(define (f x)
(* x x))
(provide f)
(module* foo racket/base
;; External test of the function
(require rackunit
(submod ".."))
(check-equal? (f 2) 4))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment