From 9ccd498cae7947a9ae3f32add3067c3b4656355b Mon Sep 17 00:00:00 2001 From: Sam Tobin-Hochstadt Date: Sat, 6 Dec 2014 22:08:36 -0500 Subject: [PATCH] Move schemeunit to this repository. This loses the history of these files, but that history is both trivial (they're all 3-line files) and hard to merge. --- schemeunit/LICENSE.txt | 11 +++++++++++ schemeunit/gui.rkt | 3 +++ schemeunit/info.rkt | 10 ++++++++++ schemeunit/main.rkt | 3 +++ schemeunit/text-ui.rkt | 3 +++ 5 files changed, 30 insertions(+) create mode 100644 schemeunit/LICENSE.txt create mode 100644 schemeunit/gui.rkt create mode 100644 schemeunit/info.rkt create mode 100644 schemeunit/main.rkt create mode 100644 schemeunit/text-ui.rkt 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))