move rackunit's drracket plugin into its own pkg,

that you can now get via the (new) 'rackunit' pkg

original commit: ed5b2e6a4bfe2da46ecb67d33397d5b8e29e7169
This commit is contained in:
Robby Findler 2013-08-11 11:28:54 -05:00
parent 432f9fed39
commit f89f07a6f0
22 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,13 @@
#lang info
(define collection 'multi)
(define deps '("base"
"data-lib"
"rackunit-lib"
"gui-lib"
"drracket-plugin-lib"))
(define pkg-desc "RackUnit testing framework DrRacket plugin")
(define pkg-authors '(ryanc noel))

View File

@ -0,0 +1,12 @@
#lang info
(define collection 'multi)
(define deps '("rackunit-lib"
"rackunit-plugin-lib"))
(define implies '("rackunit-lib"
"rackunit-plugin-lib"))
(define pkg-desc "RackUnit testing framework")
(define pkg-authors '(ryanc noel))