diff --git a/schemeunit/LICENSE.txt b/schemeunit/LICENSE.txt new file mode 100644 index 0000000..47f905a --- /dev/null +++ b/schemeunit/LICENSE.txt @@ -0,0 +1,11 @@ +schemeunit +Copyright (c) 2010-2014 PLT Design Inc. + +This package is distributed under the GNU Lesser General Public +License (LGPL). This means that you can link this package into proprietary +applications, provided you follow the rules stated in the LGPL. You +can also modify this package; if you distribute a modified version, +you must distribute it under the terms of the LGPL, which in +particular means that you must release the source code for the +modified software. See http://www.gnu.org/copyleft/lesser.html +for more information. diff --git a/schemeunit/gui.rkt b/schemeunit/gui.rkt new file mode 100644 index 0000000..49c63ef --- /dev/null +++ b/schemeunit/gui.rkt @@ -0,0 +1,3 @@ +#lang racket/base +(require rackunit/gui) +(provide (all-from-out rackunit/gui)) diff --git a/schemeunit/info.rkt b/schemeunit/info.rkt new file mode 100644 index 0000000..5d218c5 --- /dev/null +++ b/schemeunit/info.rkt @@ -0,0 +1,10 @@ +#lang info + +(define collection "schemeunit") +(define deps '("base" + "rackunit-lib" + "rackunit-gui")) + +(define pkg-desc "Legacy SchemeUnit testing framework") + +(define pkg-authors '(jay)) diff --git a/schemeunit/main.rkt b/schemeunit/main.rkt new file mode 100644 index 0000000..41d8df5 --- /dev/null +++ b/schemeunit/main.rkt @@ -0,0 +1,3 @@ +#lang racket/base +(require rackunit) +(provide (all-from-out rackunit)) diff --git a/schemeunit/text-ui.rkt b/schemeunit/text-ui.rkt new file mode 100644 index 0000000..a5743e6 --- /dev/null +++ b/schemeunit/text-ui.rkt @@ -0,0 +1,3 @@ +#lang racket/base +(require rackunit/text-ui) +(provide (all-from-out rackunit/text-ui))