You've already forked explain.depesz.com
mirror of
https://gitlab.com/depesz/explain.depesz.com.git
synced 2025-07-03 00:58:12 +02:00
- change the secret/secrets code so that it will work in both old and new Mojolicious versions. - Add information that perl modules can be installed from distribution package repositories, and not neccessarily from cpan - Add more description to information on config file - Revert default config to previous state - Add tests (to be run by explain.pl test) that check for required perl modules
18 lines
293 B
Perl
Executable File
18 lines
293 B
Perl
Executable File
#!/usr/bin/env perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use Test::More tests => 7;
|
|
use Test::Mojo;
|
|
|
|
use_ok( 'Explain' );
|
|
use_ok( 'Date::Simple' );
|
|
use_ok( 'Mail::Sender' );
|
|
use_ok( 'Pg::Explain' );
|
|
use_ok( 'Email::Valid' );
|
|
|
|
my $t = Test::Mojo->new( 'Explain' );
|
|
|
|
$t->get_ok( '/' )->status_is( 200 );
|