1use strict;
2use warnings;
3
4use Test::More;
5BEGIN {
6    plan skip_all => 'this test requires a built dist'
7        unless -f 'MANIFEST' && -f 'META.json';
8}
9
10use Moose ();
11
12# this is used in Moo::sification
13ok(defined $Moose::AUTHORITY, '$AUTHORITY is set in the main module');
14
15done_testing;
16