1## no critic (RCS,VERSION,encapsulation,Module)
2use strict;
3use warnings;
4
5use Test::More;
6
7BEGIN {
8    plan skip_all => 'Dependency testing only applies to Win32'
9        unless $^O eq 'MSWin32';
10    use_ok 'Win32';
11    use_ok 'Win32::API';
12    use_ok 'Win32::API::Type';
13}
14
15done_testing();
16