use v6-alpha; use Test; use File::Spec; plan 3; use Pod::Event::Parser; pass "(dummy instead of broken use_ok)"; use Pod::Event::Handler::HTML; pass "(dummy instead of broken use_ok)"; try { chdir "ext/Pod-Event-Parser" }; # Hack if we're run from make smoke my $test_output = ""; parse(catfile('t', 'sample.pod'), pod2html($test_output)); is($test_output, '

This is header 1

This is header 2

This is regular text which wraps up to two lines

 This is verbatim text
 which contains some code in it
 for () {
     this is the stuff
 }

This is regular text again

', '... POD -> to -> HTML worked');