[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/26: tests: records: Add test for ellipsis in body.
From: |
guix-commits |
Subject: |
11/26: tests: records: Add test for ellipsis in body. |
Date: |
Sun, 4 Jun 2023 05:38:33 -0400 (EDT) |
jpoiret pushed a commit to branch master
in repository guix.
commit 178ffed3b7fe1784fff67b963c5c4bb667fbad2a
Author: Josselin Poiret <dev@jpoiret.xyz>
AuthorDate: Sun Jun 4 10:31:08 2023 +0200
tests: records: Add test for ellipsis in body.
* tests/records.scm ("match-record, ellipsis in body"): New test.
---
tests/records.scm | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/tests/records.scm b/tests/records.scm
index 8ee306bddc..5464892d3b 100644
--- a/tests/records.scm
+++ b/tests/records.scm
@@ -590,6 +590,19 @@ Description: 1st line,
(match-record rec <with-thunked> (normal thunked)
(list normal thunked)))))
+(test-equal "match-record, ellipsis in body"
+ #t
+ (begin
+ (define-record-type* <foo> foo make-foo foo?
+ (value foo-value))
+ (define bar (foo (value '(1 2 3))))
+ (match-record bar <foo> (value)
+ (match value
+ ((one two ...)
+ #t)
+ (_
+ #f)))))
+
(test-equal "match-record-lambda"
'("thing: foo" "thing: bar")
(begin
- branch master updated (65bce4d9f9 -> cacc0cb6ab), guix-commits, 2023/06/04
- 01/26: services: screen-locker-service-type: Configurable PAM and setuid., guix-commits, 2023/06/04
- 05/26: gnu: sbsigntools: Update to 0.9.5., guix-commits, 2023/06/04
- 13/26: gnu: Add ghc-vector-hashtables., guix-commits, 2023/06/04
- 07/26: records: match-record: Support thunked and delayed fields., guix-commits, 2023/06/04
- 08/26: dir-locals: Fix MATCH-RECORD indentation., guix-commits, 2023/06/04
- 09/26: records: Add MATCH-RECORD-LAMBDA., guix-commits, 2023/06/04
- 20/26: build-system: New agda-build-system., guix-commits, 2023/06/04
- 11/26: tests: records: Add test for ellipsis in body.,
guix-commits <=
- 12/26: gnu: Add ghc-peano., guix-commits, 2023/06/04
- 26/26: channels: Raise an error if dependency's introduction is malformed, guix-commits, 2023/06/04
- 04/26: gnu: proot: Update to 5.4.0 and fix clone3 behavior., guix-commits, 2023/06/04
- 02/26: gnu: heimdal: Run autoreconf., guix-commits, 2023/06/04
- 03/26: gnu: heimdal: Drop obsolete and insecure user tools., guix-commits, 2023/06/04
- 06/26: records: match-record: Raise a syntax error if TYPE is nonexistent., guix-commits, 2023/06/04
- 10/26: records: match-record: Do not show internal form., guix-commits, 2023/06/04
- 14/26: gnu: agda: Update to 2.6.3 and switch to git-fetch., guix-commits, 2023/06/04
- 16/26: gnu: emacs-agda2-mode: No longer inherit from agda., guix-commits, 2023/06/04
- 17/26: gnu: emacs-agda2-mode: Switch to G-Exps., guix-commits, 2023/06/04