racket/collects/tests/planet2/tests-planet.rkt
Jay McCarthy fae660b0e4 Release Planet 2 (beta)
This was developed in a different repository, so the history will be
archived there:

https://github.com/jeapostrophe/galaxy
2012-11-08 06:16:42 -07:00

23 lines
651 B
Racket

#lang racket/base
(require "shelly.rkt"
"util.rkt")
(pkg-tests
(with-fake-root
(shelly-case
"planet compatibility tests - no deps"
$ "raco pkg install planet-dyoo-stardate1"
$ "racket -e '(require dyoo/stardate1/main)'"))
(with-fake-root
(shelly-case
"planet compatibility tests - deps"
$ "raco pkg install --deps search-auto planet-dyoo-union-find1"
$ "racket -e '(require dyoo/union-find1/test-union-find)'"))
(with-fake-root
(shelly-case
"planet compatibility tests - deps"
$ "raco pkg install --deps search-auto planet-neil-rackonsole1"
$ "racket -e '(require neil/rackonsole1/test-rackonsole)'")))