Win32::Mock - Mock Win32 modules


Win32-Mock documentation Contained in the Win32-Mock distribution.

Index


Code Index:

NAME

Top

Win32::Mock - Mock Win32 modules

VERSION

Top

Version 0.05

SYNOPSIS

Top

    use Win32::Mock;
    use Win32;      # this now always works, using the mocked module




DESCRIPTION

Top

Win32::Mock provides mocked version of Win32 modules and functions so programs and modules with Win32 specific code can be tested on any operating system.

AUTHOR

Top

Sébastien Aperghis-Tramoni, <sebastien at aperghis.net>

BUGS

Top

Please report any bugs or feature requests to bug-win32-mock at rt.cpan.org, or through the web interface at http://rt.cpan.org/Public/Dist/Display.html?Name=Win32-Mock. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc Win32::Mock

You can also look for information at:

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/Win32-Mock

* CPAN Ratings

http://cpanratings.perl.org/d/Win32-Mock

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Win32-Mock

* Search CPAN

http://search.cpan.org/dist/Win32-Mock

COPYRIGHT & LICENSE

Top


Win32-Mock documentation Contained in the Win32-Mock distribution.

package Win32::Mock;
use strict;
use warnings;
use File::Basename;
use Devel::FakeOSName "Win32/\u$^O";

{
    no strict "vars";
    $VERSION = '0.05';
    unshift @INC, dirname($INC{"Win32/Mock.pm"}) . "/Mock";
}

1

__END__