The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/env perl
#
# import_strict.t
#
########################################################################

package Testcase::Spec::ImportStrict;
use Test::Spec;
use FindBin qw($Bin);
use warnings;
BEGIN { require "$Bin/test_helper.pl" };

describe "Test::Spec" => sub {
  describe "test file that violates strict" => sub {
    my $tap = capture_tap("strict_violating_spec.pl");

    it "does not compile" => sub {
      like($tap, qr/aborted due to compilation errors/);
    };

    it "shows reason for failure" => sub {
      like($tap,
          qr/undefined_variable_violates_strict_mode_and_test_should_not_compile/);
    }
  }
};

runtests unless caller;