summaryrefslogtreecommitdiff
path: root/xt/author/authority.t
blob: 5cf61f72b49678733670ff1f0162c0462af9abfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use strict;
use warnings;

use Test::More;
BEGIN {
    plan skip_all => 'this test requires a built dist'
        unless -f 'MANIFEST' && -f 'META.json';
}

use Moose ();

# this is used in Moo::sification
ok(defined $Moose::AUTHORITY, '$AUTHORITY is set in the main module');

done_testing;