GitXplorerGitXplorer
t

tap-parser-sourcehandler-mytap

public
4 stars
2 forks
0 issues

Commits

List of commits on branch master.
Unverified
0fb37f26c50e0849e940f332818e42fa5f03c800

Increment to v3.28.

ttheory committed 9 years ago
Unverified
8b4d8a29c5c7ae1103ead983e17580e885199e50

Timestamp v3.27.

ttheory committed 9 years ago
Unverified
7f326558aae68fbf62455fe288d588e624292057

Update GitHub URLs and copyright year.

ttheory committed 9 years ago
Unverified
8f6cdcce728d44a3eb2904ef088a79437ae4e8bf

Exclude generated scripts directory from MANIFEST.

ttheory committed 9 years ago
Unverified
96cb80b59967d0e21d7b4ccf6aa38986b5980737

Refactor my_prove to subclass App::Prove.

ttheory committed 9 years ago
Unverified
a8b9809a2fcf5f5f6f957301676168ea394e1cd3

Fix password handling.

ttheory committed 9 years ago

README

The README file for this repository.

TAP/Parser/SourceHandler/MyTAP version 3.28

This module adds support for executing MyTAP MySQL tests under Test::Harness and C. This is useful for executing your Perl tests and your MySQL tests together, and analysing their results.

Most likely. you'll want to use it with C to execute your Perl and MyTAP tests:

prove --source Perl \
      --ext .t --ext .my \
      --source MyTAP --mytap-option database=try \
                     --mytap-option user=root \
                     --mytap-option suffix=.my

Or in F<Build.PL> for your application with MyTAP tests in F<t/*.my>:

Module::Build->new(
    module_name        => 'MyApp',
    test_file_exts     => [qw(.t .my)],
    use_tap_harness    => 1,
    tap_harness_args   => {
        sources => {
            Perl  => undef,
            MyTAP => {
                database => 'try',
                user     => 'root',
                suffix   => '.my',
            },
        }
    },
    build_requires     => {
        'Module::Build'                     => '0.30',
        'TAP::Parser::SourceHandler::MyTAP' => '3.22',
    },
)->create_build_script;

Installation

To install this module, type the following:

perl Build.PL
./Build
./Build test
./Build install

Dependencies

TAP::Parser::SourceHandler::MyTAP requires TAP::Parser::SourceHandler.

Copyright and Licence

Copyright (c) 2010-2016 David E. Wheeler. Some Rights Reserved.

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