1
0
mirror of https://gitlab.com/depesz/explain.depesz.com.git synced 2025-07-03 00:58:12 +02:00
Files
explain.depesz.com/t/basic.t
Hubert depesz Lubaczewski 930f22b1c6 Editorialization of last merge
- 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
2014-10-31 15:55:59 +01:00

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 );