From 34ab5c9912fed1b57ea36b5244310ae031163f85 Mon Sep 17 00:00:00 2001 From: Mathieu Othacehe Date: Mon, 22 Mar 2021 12:52:45 +0100 Subject: [PATCH] Remove ui test. --- Makefile.am | 1 - tests/ui.scm | 28 ---------------------------- 2 files changed, 29 deletions(-) delete mode 100644 tests/ui.scm diff --git a/Makefile.am b/Makefile.am index 41ea7fc..cec42e9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -125,7 +125,6 @@ TESTS = \ tests/database.scm \ tests/http.scm \ tests/metrics.scm \ - tests/ui.scm \ tests/utils.scm # Unset 'GUILE_LOAD_COMPILED_PATH' altogether while compiling. Otherwise, if diff --git a/tests/ui.scm b/tests/ui.scm deleted file mode 100644 index 62e1432..0000000 --- a/tests/ui.scm +++ /dev/null @@ -1,28 +0,0 @@ -;;; ui.scm -- tests for (cuirass ui) module -;;; Copyright © 2016 Mathieu Lirzin -;;; -;;; This file is part of Cuirass. -;;; -;;; Cuirass 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. -;;; -;;; Cuirass 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 Cuirass. If not, see . - -(use-modules (cuirass ui) - (srfi srfi-64)) - -(test-begin "ui") - -(test-error "invalid program name" - 'wrong-type-arg - (%program-name #f)) - -(test-end)