Skip to content

Commit

Permalink
Revert flawed test
Browse files Browse the repository at this point in the history
This test assumes Pod::To::BigPage is actually installed and located in a repository that the run ... htmlify.p6 is going to see. For instance: perl6 -I/path/to/Pod-To-BigPage/lib t/00-load.t will not work even though the dependency on Pod::To::BigPage is met. To use run like this would require passing all the $*REPOs (@inc) into the executed script (htmlify.p6)
  • Loading branch information
ugexe authored Jan 14, 2017
1 parent fe34000 commit 445dc78
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions t/00-load.t
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
use v6;
use Test;

plan 2;
plan 1;

use-ok 'Pod::To::BigPage', 'load module Pod::To::BigPage';

my $ok = run($*EXECUTABLE-NAME, '-c', 'htmlify.p6');

is $ok.exitcode, 0, 'htmlify compiles';

0 comments on commit 445dc78

Please sign in to comment.