blob: 843368c8e91c548de769d13f9044cbbd6c97eeae (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
;;; Guile Feed --- Feed command-line interface.
;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
;;;
;;; This file is part of Guile Feed.
;;;
;;; Guile Feed 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.
;;;
;;; Guile Feed 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 Guile Feed. If not, see
;;; <http://www.gnu.org/licenses/>.
(define-module (test-feed)
#:use-module (guix tests)
#:use-module (feed scripts rss)
#:use-module (ice-9 match)
#:use-module (srfi srfi-64))
(test-begin "search")
(test-assert "feed-rss-search"
(string=? (with-output-to-string
(lambda ()
(feed-rss "-s" "planet-gnu")))
"\
name: planet-gnu
description: Gnu planet.
link: http://planet.gnu.org/atom.xml
relevance: 15
"))
(test-end "search")
|