The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

XT::Files::File - file object for XT::Files

VERSION

Version 0.002

SYNOPSIS

    use XT::Files::File;
    my $file = XT::Files::File->new( name => 'lib/Local/Module.pm', is_module => 1 );

    $file->is_module();  # returns 1
    $file->is_pod();     # returns empty string
    $file->is_script();  # returns empty string
    $file->is_test();    # returns empty string

DESCRIPTION

The XT::Files::File object is used by XT::Files to represent files that should be tested.

USAGE

new( name => NAME, is_X => 1 )

Returns a new XT::Files::File object. new takes a hash or hash ref with its arguments.

The name argument is the name of the file and is required.

The arguments is_module, is_pod, is_script and is_test are optional and default to false. They specify what kind of file it is.

SEE ALSO

Test::XTFiles, XT::Files

SUPPORT

Bugs / Feature Requests

Please report any bugs or feature requests through the issue tracker at https://github.com/skirmess/XT-Files/issues. You will be notified automatically of any progress on your issue.

Source Code

This is open source software. The code repository is available for public review and contribution under the terms of the license.

https://github.com/skirmess/XT-Files

  git clone https://github.com/skirmess/XT-Files.git

AUTHOR

Sven Kirmess <sven.kirmess@kzone.ch>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2018-2019 by Sven Kirmess.

This is free software, licensed under:

  The (two-clause) FreeBSD License