App-news
view release on metacpan or search on metacpan
t/20-post.t view on Meta::CPAN
# Copyright (C) 2021â2023 Alex Schroeder <alex@gnu.org>
#
# This program 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.
#
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
use Modern::Perl;
use Test::More;
use Test::Mojo;
our $port;
require './t/test.pl';
diag "Starting News Client on $port";
$ENV{NNTPSERVER} = "localhost:$port";
my $t = Test::Mojo->new(Mojo::File->new('script/news'));
$t->get_ok('/news/group/local.test#2')->status_is(200)
->element_exists('a[href="/news/post/local.test"]');
$t->get_ok('/news/post/local.test')->status_is(200)
->element_exists('textarea');
# warn $t->tx->res->body;
done_testing;
( run in 2.405 seconds using v1.01-cache-2.11-cpan-364913b4093 )