The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl
#===============================================================================
#
# t/01_imports_04.t
#
# DESCRIPTION
#   Test script to check import options.
#
# COPYRIGHT
#   Copyright (C) 2014 Steve Hay.  All rights reserved.
#
# LICENCE
#   You may distribute under the terms of either the GNU General Public License
#   or the Artistic License, as specified in the LICENCE file.
#
#===============================================================================

use 5.008001;

use strict;
use warnings;

use Test::More tests => 9;

#===============================================================================
# INITIALIZATION
#===============================================================================

BEGIN {
    use_ok('Win32::UTCFileTime', qw(alt_stat));
}

#===============================================================================
# MAIN PROGRAM
#===============================================================================

MAIN: {
    ok(!defined &main::stat, 'stat is not imported');
    ok(!defined &main::lstat, 'lstat is not imported');
    ok(!defined &main::utime, 'utime is not imported');
    ok( defined &main::alt_stat, 'alt_stat is imported');
    ok(!defined &CORE::GLOBAL::stat, 'stat is not globally overridden');
    ok(!defined &CORE::GLOBAL::lstat, 'lstat is not globally overridden');
    ok(!defined &CORE::GLOBAL::utime, 'utime is not globally overridden');
    ok(!defined &CORE::GLOBAL::alt_stat, 'alt_stat is not globally overridden');
}

#===============================================================================