Skip to content

Commit f519a4f

Browse files
Add link to SRFI 252.
1 parent 172fa4f commit f519a4f

File tree

3 files changed

+36
-86
lines changed

3 files changed

+36
-86
lines changed

README.org

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2+
# SPDX-FileCopyrightText: 2024 Per Bothner
3+
# SPDX-License-Identifier: MIT
14
* SRFI 64: A Scheme API for test suites
25

36
** by Per Bothner
@@ -11,12 +14,11 @@ library-name: testing
1114
This repository hosts [[https://srfi.schemers.org/srfi-64/][SRFI 64]]: A Scheme API for test suites, a [[https://srfi.schemers.org/][Scheme Request for Implementation]].
1215

1316
This SRFI is in /final/ status.
14-
17+
See also [[/srfi-252/][SRFI 252: Property Testing]].
1518
The full documentation for this SRFI can be found in the [[https://srfi.schemers.org/srfi-64/srfi-64.html][SRFI Document]].
1619

1720
If you'd like to participate in the discussion of this SRFI, or report issues with it, please [[https://srfi.schemers.org/srfi-64/][join the SRFI-64 mailing list]] and send your message there.
1821

1922
Thank you.
2023

21-
2224
[[mailto:[email protected]][The SRFI Editors]]

index.html

Lines changed: 31 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -1,86 +1,33 @@
11
<!DOCTYPE html>
22
<html>
3-
<head>
4-
<title>A Scheme API for test suites</title>
5-
<link href="/admin.css" rel="stylesheet">
6-
<link href="/list.css" rel="stylesheet">
7-
<link href="/favicon.png" rel="icon" sizes="192x192" type="image/png">
8-
<meta charset="utf-8" />
9-
<meta name="viewport" content="width=device-width, initial-scale=1" />
10-
<script type="text/x-mathjax-config">
11-
MathJax.Hub.Config({
12-
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
13-
});
14-
</script>
15-
<script crossorigin="anonymous" integrity=
16-
"sha384-Ra6zh6uYMmH5ydwCqqMoykyf1T/+ZcnOQfFPhDrp2kI4OIxadnhsvvA2vv9A7xYv" src=
17-
"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"
18-
type="text/javascript"></script>
19-
</head>
20-
21-
<body>
22-
<h1>SRFI 64: A Scheme API for test suites</h1>
23-
<p class="authors">by Per Bothner</p>
24-
<p class="based-on"></p>
25-
<p class="status">status: <em>final</em> (2006-06-18)</p>
26-
<p class="keywords">keywords: <a href="https://srfi.schemers.org/?keywords=testing">Testing</a></p>
27-
<p class="library-name">library name: testing</p>
28-
29-
<ul class="info">
30-
<li><a href="srfi-64.html">The SRFI Document</a></li>
31-
<li><a href="https://srfi-email.schemers.org/srfi-64/">Discussion Archive</a></li>
32-
<li><a href="https://github.com/scheme-requests-for-implementation/srfi-64">Git repo (on Github)</a></li>
33-
<li>
34-
<a href="mailto:[email protected]">srfi-64@<span class="antispam">nospam</span>srfi.schemers.org (subscribers only)</a></li>
35-
<li>
36-
<span class="firefox-column-workaround">
37-
<form method="POST" action="https://www.simplelists.com/subscribe.php">
38-
<div class="title">Subscribe to srfi-64 mailing list</div>
39-
<input name="email"
40-
placeholder="email address"
41-
tabindex="1"
42-
type="email" >
43-
<input name="name"
44-
placeholder="full name"
45-
tabindex="2"
46-
type="text" >
47-
<p>
48-
<input id="sub-digest"
49-
name="digest"
50-
tabindex="3"
51-
type="checkbox"
52-
value="digest" >
53-
<label for="sub-digest">daily digest?</label></p>
54-
<input class="submit"
55-
name="submit"
56-
tabindex="4"
57-
type="submit"
58-
value="Subscribe to srfi-64" >
59-
<input type="hidden" name="action" value="subscribe">
60-
<input type="hidden" name="list" value="[email protected]"></form></a></li>
61-
<li>
62-
<span class="firefox-column-workaround">
63-
<form method="POST" action="https://www.simplelists.com/subscribe.php">
64-
<p class="title">Unsubscribe from srfi-64 mailing list</p>
65-
<input name="email"
66-
placeholder="email address"
67-
tabindex="5"
68-
type="email" >
69-
<input class="submit"
70-
name="submit"
71-
tabindex="6"
72-
type="submit"
73-
value="Unsubscribe from srfi-64" >
74-
<input name="action"
75-
type="hidden"
76-
value="unsubscribe" >
77-
<input name="list"
78-
type="hidden"
79-
value="[email protected]"></form></a></li></ul>
80-
<h2>Abstract</h2> <p>This defines an API for writing <dfn>test
81-
suites</dfn>, to make it easy to portably test Scheme APIs, libraries,
82-
applications, and implementations. A test suite is a collection of
83-
<dfn>test cases</dfn> that execute in the context of a
84-
<dfn>test-runner</dfn>. This specifications also supports writing new
85-
test-runners, to allow customization of reporting and processing the
86-
result of running test suites.</body></html>
3+
<head>
4+
<!-- SPDX-FileCopyrightText: 2024 Per Bothner -->
5+
<!-- SPDX-License-Identifier: MIT -->
6+
<title>A Scheme API for test suites</title>
7+
<link href="/admin.css" rel="stylesheet">
8+
<link href="/list.css" rel="stylesheet">
9+
<link href="/favicon.png" rel="icon" sizes="192x192" type="image/png">
10+
<meta charset="utf-8">
11+
<meta name="viewport" content="width=device-width, initial-scale=1">
12+
<script type="text/x-mathjax-config">MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});</script>
13+
<script crossorigin="anonymous" integrity="sha384-Ra6zh6uYMmH5ydwCqqMoykyf1T/+ZcnOQfFPhDrp2kI4OIxadnhsvvA2vv9A7xYv" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script></head>
14+
<body>
15+
<h1>SRFI 64: A Scheme API for test suites</h1>
16+
<p class="authors">by Per Bothner</p>
17+
<p class="based-on"></p>
18+
<p class="status">status: <em>final</em> (2006-06-18)</p>
19+
<p class="keywords">keywords: <a href="https://srfi.schemers.org/?keywords=testing">Testing</a></p><span class="see-also">See also <a href="/srfi-252/">SRFI 252: Property Testing</a>.</span>
20+
<p class="library-name">library name: testing</p>
21+
<ul class="info">
22+
<li><a href="srfi-64.html">The SRFI Document</a></li>
23+
<li><a href="https://srfi-email.schemers.org/srfi-64/">Discussion Archive</a></li>
24+
<li><a href="https://github.com/scheme-requests-for-implementation/srfi-64">Git repo (on GitHub)</a></li>
25+
<li><a href="mailto:[email protected]">srfi-64@<span class="antispam">nospam</span>srfi.schemers.org (subscribers only)</a></li>
26+
<li><span class="firefox-column-workaround">
27+
<form method="POST" action="https://www.simplelists.com/subscribe.php">
28+
<div class="title">Subscribe to srfi-64 mailing list</div><input name="email" placeholder="email address" tabindex="1" type="email"><input name="name" placeholder="full name" tabindex="2" type="text">
29+
<p><input id="sub-digest" name="digest" tabindex="3" type="checkbox" value="digest"><label for="sub-digest">daily digest?</label></p><input class="submit" name="submit" tabindex="4" type="submit" value="Subscribe to srfi-64"><input type="hidden" name="action" value="subscribe"><input type="hidden" name="list" value="[email protected]"></form></span></li>
30+
<li><span class="firefox-column-workaround">
31+
<form method="POST" action="https://www.simplelists.com/subscribe.php">
32+
<div class="title">Unsubscribe from srfi-64 mailing list</div><input name="email" placeholder="email address" tabindex="5" type="email"><input class="submit" name="submit" tabindex="6" type="submit" value="Unsubscribe from srfi-64"><input type="hidden" name="action" value="unsubscribe"><input name="list" type="hidden" value="[email protected]"></form></span></li></ul>
33+
<h2>Abstract</h2> <p>This defines an API for writing <dfn>test suites</dfn>, to make it easy to portably test Scheme APIs, libraries, applications, and implementations. A test suite is a collection of <dfn>test cases</dfn> that execute in the context of a <dfn>test-runner</dfn>. This specifications also supports writing new test-runners, to allow customization of reporting and processing the result of running test suites.</body></html>

srfi-64.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ <h2>Status</h2>
2828
</li><li>Revised: <a href="https://srfi.schemers.org/srfi-64/srfi-64-1.5.html">2006-02-24</a>
2929
</li><li>Final: <a href="https://srfi.schemers.org/srfi-64/srfi-64-1.6.html">2006-06-18</a></li>
3030
<li>Revised to fix errata: 2016-08-11</li>
31+
<li>Revised to fix links and to refer to RackUnit, the new name of SchemeUnit: 2023-11-29</li>
3132
</ul>
3233

3334

0 commit comments

Comments
 (0)