guestbook-ng/t/basic.t

24 lines
579 B
Perl
Raw Normal View History

2021-12-04 03:06:03 -05:00
#!/usr/bin/env perl
2021-12-18 23:46:20 -05:00
use strict;
use warnings;
2021-12-04 03:06:03 -05:00
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);
2021-12-11 19:01:43 -05:00
my %form = (
name => 'swagg boi',
url => 'http://localhost',
2021-12-18 23:42:20 -05:00
message => 'Ayy... lmao',
2021-12-19 22:43:42 -05:00
answer => 'false'
2021-12-11 19:01:43 -05:00
);
2021-12-18 23:42:20 -05:00
$t->get_ok('/')->status_is(200)
2021-12-19 22:43:42 -05:00
->text_is(h2 => 'Messages from the World Wide Web');
$t->get_ok('/sign')->status_is(200)->text_is(h2 => 'Sign the Guestbook');
2021-12-18 23:42:20 -05:00
$t->post_ok('/sign', form => \%form)->status_is(302);
2021-12-04 03:06:03 -05:00
done_testing();