racket/pkgs/racket-test/tests/pkg/tests-planet.rkt
Matthew Flatt 2d4f3e2ac9 remove the "racket-pkgs" directory layer
The layer is now redundant, since everything left in "pkgs" is in the
"racket-pkgs" category.
2014-12-08 05:22:59 -07:00

19 lines
485 B
Racket

#lang racket/base
(require "shelly.rkt"
"util.rkt")
(this-test-is-run-by-the-main-test)
(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)'")))