| Win32-Mock documentation | Contained in the Win32-Mock distribution. |
Win32::Mock - Mock Win32 modules
Version 0.05
use Win32::Mock;
use Win32; # this now always works, using the mocked module
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.
Sébastien Aperghis-Tramoni, <sebastien at aperghis.net>
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.
You can find documentation for this module with the perldoc command.
perldoc Win32::Mock
You can also look for information at:
Copyright 2007, 2008 Sébastien Aperghis-Tramoni, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| 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__