]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/psgi_v2.t
examples/*.psgi: add examples for -httpd
[public-inbox.git] / t / psgi_v2.t
index fdd6969f8034322a4e2fcffde8e5627e6d164c7d..2c9387a496cb0d16b31019bf2297d12ecba3d834 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2018-2019 all contributors <meta@public-inbox.org>
+# Copyright (C) 2018-2020 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 use strict;
 use warnings;
@@ -160,11 +160,11 @@ test_psgi(sub { $www->call(@_) }, sub {
        $res = $cb->(GET('/v2test/?q=m:a-mid@b&x=A'));
        is($res->code, 200, 'success with Atom search');
        SKIP: {
-               require_mods(qw(XML::Feed), 2);
-               $raw = $res->content;
-               my $p = XML::Feed->parse(\$raw);
-               is($p->format, "Atom", "parsed atom feed");
-               is(scalar $p->entries, 3, "parsed three entries");
+               require_mods(qw(XML::TreePP), 2);
+               my $t = XML::TreePP->new->parse($res->content);
+               like($t->{feed}->{-xmlns}, qr/\bAtom\b/,
+                       'looks like an an Atom feed');
+               is(scalar @{$t->{feed}->{entry}}, 3, 'parsed three entries');
        };
 
        local $SIG{__WARN__} = 'DEFAULT';