An open API service indexing awesome lists of open source software.

https://github.com/book/test-requires-git

Check your test requirements against the available version of Git
https://github.com/book/test-requires-git

Last synced: 9 months ago
JSON representation

Check your test requirements against the available version of Git

Awesome Lists containing this project

README

          

NAME

Test::Requires::Git - Check your test requirements against the available version of Git

SYNOPSIS

use Test::Requires::Git;

# needs some git that supports `git init $dir`
test_requires_git version_ge => '1.6.5';

DESCRIPTION

Test::Requires::Git checks if the version of Git available for testing
meets the given requirements.

The "current git" is obtained by running "git --version" (so the first
"git" binary found in the "PATH" will be tested).

If the checks fail, then all tests will be skipped.

AUTHOR

Philippe Bruhat (BooK), .

COPYRIGHT

Copyright 2015 Philippe Bruhat (BooK), all rights reserved.

LICENSE

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