import: utils: Add spdx-string->license.
[jackhill/guix/guix.git] / tests / import-utils.scm
CommitLineData
a132f7d6
BW
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
3;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com>
4;;;
5;;; This file is part of GNU Guix.
6;;;
7;;; GNU Guix is free software; you can redistribute it and/or modify it
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
12;;; GNU Guix is distributed in the hope that it will be useful, but
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
19
20(define-module (test-import-utils)
21 #:use-module (guix tests)
22 #:use-module (guix import utils)
23 #:use-module (srfi srfi-64))
24
25(test-begin "import-utils")
26
27(test-equal "beautify-description: use double spacing"
28 "This is a package. It is great. Trust me Mr. Hendrix."
29 (beautify-description
30 "This is a package. It is great. Trust me Mr. Hendrix."))
31
32(test-equal "beautify-description: transform fragment into sentence"
33 "This package provides a function to establish world peace"
34 (beautify-description "A function to establish world peace"))
35
36(test-end "import-utils")