summaryrefslogtreecommitdiff
path: root/tests/run.scm
AgeCommit message (Collapse)Author
2024-01-11Corrected Range and Content-Range header handling2.1.0Billy Brown
Corrected the handling of the Range request header and the Content- Range response header. They now have separate parsers, to match the standard, and the content-range unparser is now correctly named. The Range header can be in one of three forms: Range: bytes=<start>-<end> Range: bytes=<start>- Range: bytes=-<end> The Content-Range header can be in one of three forms: Content-Range: bytes <start>-<end>/<size> Content-Range: bytes <start>-<end>/* Content-Range: bytes */<size> The unit tests were updated to reflect the changes. Signed-off-by: Peter Bex <peter@more-magic.net>
2019-05-05Fix tests with CHICKEN 5.0.22.0.1Peter Bex
Keywords can't be (ab)used as identifier anymore, so we can't bind expression: with let-syntax. Instead, simply use the plain symbol.
2018-09-23The intarweb tests don't actually use srfi-18; drop the dependencyPeter Bex
2018-06-22Initial CHICKEN 5 port of intarweb 1.72.0Peter Bex