The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Test::HiD::Page;
use strict;
use warnings;

use Test::Routine;
use Test::More;
use Test::File;
use namespace::autoclean;

use HiD::Page;

has output_regexp => (
  is       => 'ro' ,
  isa      => 'RegexpRef' ,
  required => 1 ,
);

has subject => (
  is       => 'ro' ,
  isa      => 'HiD::Page' ,
  required => 1 ,
);

test "output filename" => sub {
  my $test    = shift;
  my $subject = $test->subject;

  my $permalink = $subject->get_metadata( 'permalink' ) // 'none';

 SKIP:{
      skip "invalid if permalink" , 1
        unless ( $permalink eq 'none' or $permalink eq 'pretty' );

      like( $subject->output_filename , qr|.html$| , 'ends in html' );
    };
};

test "publish" => sub {
  my $test    = shift;
  my $subject = $test->subject;

  my $output = $subject->output_filename;

  file_not_exists_ok( $output , 'no output yet' );
  $subject->publish;
  file_exists_ok( $output , 'and now output' );

  file_contains_like( $output , $test->output_regexp );
};

1;