summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorArun Isaac2023-01-23 00:47:24 +0000
committerArun Isaac2023-01-23 00:47:24 +0000
commit4411ea8ad6fe12158d871669b217ecc62fd3a535 (patch)
tree71ee68782632e9c7e33eb085144b67ecf179aee6 /tests
parent46031e97ef5c68ae822ff2a7d66a4ce14a47214c (diff)
downloadtissue-4411ea8ad6fe12158d871669b217ecc62fd3a535.tar.gz
tissue-4411ea8ad6fe12158d871669b217ecc62fd3a535.tar.lz
tissue-4411ea8ad6fe12158d871669b217ecc62fd3a535.zip
tests: Remove tests for pairify.
pairify was deprecated. * tests/tissue.scm (pairify): Delete variable. ("pairify"): Delete test.
Diffstat (limited to 'tests')
-rw-r--r--tests/tissue.scm9
1 files changed, 1 insertions, 8 deletions
diff --git a/tests/tissue.scm b/tests/tissue.scm
index 6fb01fa..b2aa8e0 100644
--- a/tests/tissue.scm
+++ b/tests/tissue.scm
@@ -1,5 +1,5 @@
;;; tissue --- Text based issue tracker
-;;; Copyright © 2022 Arun Isaac <arunisaac@systemreboot.net>
+;;; Copyright © 2022, 2023 Arun Isaac <arunisaac@systemreboot.net>
;;;
;;; This file is part of tissue.
;;;
@@ -18,13 +18,6 @@
(import (srfi srfi-64))
-(define pairify
- (@@ (tissue tissue) pairify))
-
(test-begin "tissue")
-(test-equal "pairify"
- '((1 . 2) (3 . 4) (5 . 6))
- (pairify (list 1 2 3 4 5 6)))
-
(test-end "tissue")