The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

BEGIN {
  unless ($ENV{AUTHOR_TESTING}) {
    require Test::More;
    Test::More::plan(skip_all => 'these tests are for testing by the author');
  }
}

use strict;
use warnings;

use Test::DependentModules qw( test_module );
use Test::More;

if ( eval { require Pod::Readme; 1; } ) {
    plan skip_all => 'This test requires that Pod::Readme _not_ be installed';
}

plan skip_all =>
    q{MooseX::Semantic is not installable on my machine for some weird reason};

test_module('MooseX::Semantic');

done_testing();