Skip to content

Commit

Permalink
Check that dependencies for tests are installed
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Cochrane committed Jun 18, 2015
1 parent 6c2842a commit 9dc9344
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions t/000-check-dependencies.t
@@ -0,0 +1,15 @@
use v6;

use lib 'lib';
use Test;

plan 6;

my @dependencies =
<URI Pod::To::HTML LWP::Simple Algorithm::Soundex DBIish Text::VimColour>;

for @dependencies -> $dep {
use-ok $dep, "$dep able to be use-d ok";
}

# vim: expandtab shiftwidth=4 ft=perl6

0 comments on commit 9dc9344

Please sign in to comment.