From 18565edfb75218cee5ad67bd521d33ecc495b6a4 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sat, 22 Oct 2022 20:42:54 -0400 Subject: First commit! --- tests/utils.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 tests/utils.scm (limited to 'tests') 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 +;;; +;;; 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 . + +;;; 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)))))) -- cgit v1.2.3