REPLtest: Copy-paste your REPL interactions, and have them run as tests
Go to file
Georges Dupéron c057f053b0 Fixed doc
2017-01-15 00:33:01 +01:00
lang Removed replace-top-loc which was unused, moved it to 76788aba64/stx/fold.rkt 2016-09-05 15:49:10 +02:00
private Fixed GH issue #3 (again) 2016-03-31 13:29:16 +02:00
scribblings Fixed doc 2017-01-15 00:33:01 +01:00
test Remove dependency on debug for the meta-language test, since debug seems to have some backward compatibility issues. Use AFL instead. Bumped built versions for Travis. 2017-01-14 23:06:20 +01:00
.gitignore Reader and evaluator mostly work. Still need to evaluate the read tests. 2016-03-30 16:21:14 +02:00
.travis.yml Dropped build with 6.2, as it fails with the meta test and is already rather old anyway. Probably the fail is due to an old "bug" in Typed/Racket and the scopes added by afl. 2017-01-14 23:11:44 +01:00
info.rkt Remove dependency on debug for the meta-language test, since debug seems to have some backward compatibility issues. Use AFL instead. Bumped built versions for Travis. 2017-01-14 23:06:20 +01: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 Circumvented raco cover issue with eval and fixed srcloc for reader-injected code, as suggested by Spencer Florence https://github.com/florence/cover/issues/128#issuecomment-240503899 2016-08-17 21:29:10 +02:00
README.md Adjusted install command 2016-08-17 15:14:31 +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 this package with:

raco pkg install --deps search-auto repltest

Usage

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). Each prompt is followed by a single expression and by the expected result.

#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 preceding 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 checks the expected result is produced.