REPLtest: Copy-paste your REPL interactions, and have them run as tests
Go to file
2016-08-15 01:21:13 +02:00
lang Fixed GH issue #3 (again) 2016-03-31 13:29:16 +02:00
private Fixed GH issue #3 (again) 2016-03-31 13:29:16 +02:00
scribblings Documentation changes suggested by O. Andreescu. Thanks! 2016-08-15 01:21:13 +02:00
test Added datalog test case, it does not work yet and needs #:separator and other options to be implemented first. 2016-04-06 16:54:52 +02:00
.gitignore Reader and evaluator mostly work. Still need to evaluate the read tests. 2016-03-30 16:21:14 +02:00
.travis.yml Removed versions that fail anyway from .travis.yml 2016-08-13 17:41:58 +02:00
info.rkt Fixed missing build dependency on typed-racket-doc. 2016-04-03 20:57:00 +02:00
LICENSE.txt Reader and evaluator mostly work. Still need to evaluate the read tests. 2016-03-30 16:21:14 +02:00
main.rkt Improved README file 2016-03-30 18:02:53 +02:00
README.md Added link to documentation 2016-08-13 18:39:03 +02:00

Build Status, Coverage Status, Build Stats, Online Documentation.

REPLtest

This package provides the #lang repltest meta-language, which can be used to turn the transcript of an interactive racket session into a series of tests.

Installation

Install thiw package with:

raco pkg install repltest

Usage

Then write a file using the repltest meta-language, containing definitions at the top and interactions after the first prompt (by default the prompt is "> ", I will add customization options later).

#lang debug repltest typed/racket
;; There is a problem if there is a comment before a prompt, as comments
;; are not gobbled-up by the preceeding read. This will be fixed in a
;; later version.
(define x 0)
(define y 1)
'displayed
(displayln "displayed too")

> (+ 1 1)
- : Integer [more precisely: Positive-Index]
2
> x
- : Integer [more precisely: Zero]
0
> (values x y)
- : (values Integer Integer) [more precisely: (Values Zero One)]
0
1
> #R(+ 2 0)
(+ 2 0) = 2
- : Integer [more precisely: Positive-Byte]
2

When the test submodule of this file is executed (e.g. with raco test file.rkt), repltest runs the expression after each > prompt, and check they give the expected result.