diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-01-16 21:47:36 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-01-16 23:14:05 +0100 |
commit | cfd1ed84013df85f0e473884ef4038b4bd7120d4 (patch) | |
tree | 634c51fde51550743616b20e3a16b10b28e484a0 /tests | |
parent | 72c678af55390ce01bec590f760ab95af67663b2 (diff) | |
download | patches-cfd1ed84013df85f0e473884ef4038b4bd7120d4.tar patches-cfd1ed84013df85f0e473884ef4038b4bd7120d4.tar.gz |
import: cran: Avoid uses of '@@' in the tests.
* guix/import/cran.scm (description->alist, description->package): Export.
<top level>: Set! 'listify'.
* tests/cran.scm (description-alist, "description->package"): Remove use
of '@@' to access the relevant bindings.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/cran.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/cran.scm b/tests/cran.scm index d785ec5db1..70d2277198 100644 --- a/tests/cran.scm +++ b/tests/cran.scm @@ -53,7 +53,7 @@ Date/Publication: 2015-07-14 14:15:16 ") (define description-alist - ((@@ (guix import cran) description->alist) description)) + (description->alist description)) (define simple-alist '(("Key" . "Value") @@ -72,7 +72,7 @@ Date/Publication: 2015-07-14 14:15:16 "Date/Publication"))) (lset= string=? keys (map car description-alist)))) -(test-equal "listify: return empty list if key cannot be found" +(test-equal "listifyx: return empty list if key cannot be found" '() ((@@ (guix import cran) listify) simple-alist "Letters")) @@ -105,7 +105,7 @@ Date/Publication: 2015-07-14 14:15:16 ("mirror://cran/src/contrib/My-Example_1.2.3.tar.gz" "source") (_ (error "Unexpected URL: " url)))))))) - (match ((@@ (guix import cran) description->package) 'cran description-alist) + (match (description->package 'cran description-alist) (('package ('name "r-my-example") ('version "1.2.3") |