diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2018-09-04 02:51:26 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2018-09-26 20:04:53 +0300 |
| commit | 7c6cb0fbde7c1156fbee91979f5b248f0957a826 (patch) | |
| tree | ebae29e0b0a7920fb46f0a2ecd91a03f0fb88dc4 /tests/rss.scm | |
| download | guile-feed-7c6cb0fbde7c1156fbee91979f5b248f0957a826.tar.gz | |
Initial commit.
Diffstat (limited to 'tests/rss.scm')
| -rw-r--r-- | tests/rss.scm | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/rss.scm b/tests/rss.scm new file mode 100644 index 0000000..843368c --- /dev/null +++ b/tests/rss.scm @@ -0,0 +1,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") |
