Test-MockFile-Light version 0.2.0

This module provides a mechanism for mocking files to support testing file
operations in a way transparent to the file-processing-module(s).

The name of the module(s) the file accesses of which are aimed to be tested
are given as parameters in the use statement of this module. Additionally,
this module exports three subroutines to (un)define file mockers and read
the content:

	define_file_mocker($file_name, $file_content)

	undefine_file_mocker($file_name)

	get_file_mocker_content($file_name)

INSTALLATION

To install this module, run the following commands:

    perl Makefile.PL
    make
    make test
    make install


SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the perldoc command.

    perldoc Test::MockFile::Light

You can also look for information at:

    Search CPAN
        http://search.cpan.org/dist/Test-MockFile-Light

    CPAN Request Tracker:
        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test-MockFile-Light

    AnnoCPAN, annotated CPAN documentation:
        http://annocpan.org/dist/Test-MockFile-Light

    CPAN Ratings:
        http://cpanratings.perl.org/d/Test-MockFile-Light

COPYRIGHT AND LICENCE

Copyright (C) 2007 Oguz Mut

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.