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.
This commit is contained in:
Sam Tobin-Hochstadt 2014-12-06 22:08:36 -05:00
parent 5bd4abe045
commit 9ccd498cae
5 changed files with 30 additions and 0 deletions

11
schemeunit/LICENSE.txt Normal file
View File

@ -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.

3
schemeunit/gui.rkt Normal file
View File

@ -0,0 +1,3 @@
#lang racket/base
(require rackunit/gui)
(provide (all-from-out rackunit/gui))

10
schemeunit/info.rkt Normal file
View File

@ -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))

3
schemeunit/main.rkt Normal file
View File

@ -0,0 +1,3 @@
#lang racket/base
(require rackunit)
(provide (all-from-out rackunit))

3
schemeunit/text-ui.rkt Normal file
View File

@ -0,0 +1,3 @@
#lang racket/base
(require rackunit/text-ui)
(provide (all-from-out rackunit/text-ui))