Remove ui test.

This commit is contained in:
Mathieu Othacehe 2021-03-22 12:52:45 +01:00
parent 9b5a5e9876
commit 34ab5c9912
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
2 changed files with 0 additions and 29 deletions

View File

@ -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

View File

@ -1,28 +0,0 @@
;;; ui.scm -- tests for (cuirass ui) module
;;; Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
;;;
;;; 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 <http://www.gnu.org/licenses/>.
(use-modules (cuirass ui)
(srfi srfi-64))
(test-begin "ui")
(test-error "invalid program name"
'wrong-type-arg
(%program-name #f))
(test-end)