10 lines
210 B
Racket
10 lines
210 B
Racket
#lang racket/base
|
|
(require rackunit
|
|
"configuration-table-test.rkt")
|
|
(provide all-configuration-tests)
|
|
|
|
(define all-configuration-tests
|
|
(test-suite
|
|
"Configuration"
|
|
configuration-table-tests))
|