summaryrefslogtreecommitdiff
path: root/t/01-basic.t
blob: 7b6dbcfdafdbfe9da2a7671ecb915cf840a98213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use strict;
use warnings;

# this test resembles one that would be generated with Dist::Zilla::Plugin::Test::CheckBreaks 0.011

use Test::More 0.88;
use if $ENV{AUTHOR_TESTING}, 'Test::Warnings';
use Module::Runtime::Conflicts;

eval { Module::Runtime::Conflicts->check_conflicts };

diag $@ if $@;
pass 'conflicts checked via Module::Runtime::Conflicts';

done_testing;