guestbook-ng/t/message.t
swag 7dc6ceb581 Revert "Revert "Only need the first few messages for this test""
This reverts commit 3c513e4ad9a014c0fe890d2affb3c75009871467.
2022-07-26 22:09:36 -04:00

25 lines
611 B
Perl

#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Mojo::File qw{curfile};
use Test::Mojo;
my $script = curfile->dirname->sibling('guestbook-ng.pl');
my $t = Test::Mojo->new($script);
$t->ua->max_redirects(0);
# This one is not spam
$t->get_ok('/message/3')->status_is(200)
->text_is(h2 => 'Messages from the World Wide Web');
# This one _is_ spam
$t->get_ok('/message/2')->status_is(200)
->text_is(h2 => 'Messages from the World Wide Web');
# This one is deleted
$t->get_ok('/message/1')->status_is(404)
->text_is(h2 => 'Messages from the World Wide Web');
done_testing();