From 234e501596d1c6ad6f48bb5f5f337d3617f68176 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Wed, 2 Oct 2024 14:02:28 +0100 Subject: reader: Handle coercion of number to number. * ravanan/reader.scm (coerce-type): Handle coercion of number to number. * tests/reader.scm: New file. --- tests/reader.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tests/reader.scm (limited to 'tests') diff --git a/tests/reader.scm b/tests/reader.scm new file mode 100644 index 0000000..4737ed6 --- /dev/null +++ b/tests/reader.scm @@ -0,0 +1,28 @@ +;;; ravanan --- High-reproducibility CWL runner powered by Guix +;;; Copyright © 2024 Arun Isaac +;;; +;;; This file is part of ravanan. +;;; +;;; ravanan 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. +;;; +;;; ravanan 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 ravanan. If not, see . + +(use-modules (srfi srfi-64) + (ravanan reader)) + +(test-begin "reader") + +(test-equal "Coerce number to number" + 37 + (coerce-type 37 'number)) + +(test-end "reader") -- cgit v1.2.3