#!/usr/bin/env perl use strict; use warnings; use Test::More; use Test::Mojo; my $t = Test::Mojo->new; $t->get_ok('https://www.perlmonks.org') ->status_is(200); done_testing(); #### ok 1 - GET https://www.perlmonks.org ok 2 - 200 OK 1..2