[plt-scheme] unit testing in r6rs

From: Noel Welsh (noelwelsh at gmail.com)
Date: Tue Oct 14 19:13:49 EDT 2008

On Mon, Oct 13, 2008 at 1:58 PM, Wolfgang De Meuter <wdmeuter at vub.ac.be> wrote:
> Hello,
>
> I'm a bit puzzled with all the languages and module/unit/library-variations.
>
> I'm developing R6RS and would like to write unit tests for my libraries.
>
> Which libraries do I need to include to do so, and which documentation
> should I read?

SchemeUnit is a unit testing framework for PLT Scheme.  Here's a small
example showing how you can use SchemeUnit from PLT Scheme's R6RS
language:

#lang r6rs

(import (only (scheme base) require planet))

(require (planet schematics/schemeunit:3/test))

(check-equal? 1 2)


HTH,
Noel


Posted on the users mailing list.