summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDavid Thompson <dthompson@vistahigherlearning.com>2022-10-22 20:42:54 -0400
committerDavid Thompson <dthompson@vistahigherlearning.com>2022-10-22 20:55:46 -0400
commit18565edfb75218cee5ad67bd521d33ecc495b6a4 (patch)
tree93c812f97a7910119f13067efe984e4b9609dae5 /tests
First commit!
Diffstat (limited to 'tests')
-rw-r--r--tests/utils.scm30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/utils.scm b/tests/utils.scm
new file mode 100644
index 0000000..8346d71
--- /dev/null
+++ b/tests/utils.scm
@@ -0,0 +1,30 @@
+;;; Catbird Game Engine
+;;; Copyright © 2022 David Thompson <davet@gnu.org>
+;;;
+;;; Catbird is free software: you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation, either version 3 of the License, or
+;;; (at your option) any later version.
+;;;
+;;; Catbird is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;;; General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with Catbird. If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+;;
+;; Testing utilities.
+;;
+;;; Code:
+(define-module (tests utils)
+ #:use-module (srfi srfi-64)
+ #:export (with-tests))
+
+(define-syntax-rule (with-tests name body ...)
+ (begin
+ (test-begin name)
+ body ...
+ (exit (zero? (test-runner-fail-count (test-end))))))