#!/usr/bin/perl

our $VERSION = '0.13'; # VERSION

# since Perinci::CmdLine requires us for testing, if we don't have
# Perinci::CmdLine yet, we exit 0 so we don't fail compile tests.
eval { require Perinci::CmdLine }; exit 0 if $@;

Perinci::CmdLine->new(url=>'/Perinci/Examples/test_completion')->run;

# ABSTRACT: A script to test bash completion
# PODNAME: peri-eg-test-completion

__END__
=pod

=head1 NAME

peri-eg-test-completion - A script to test bash completion

=head1 VERSION

version 0.13

=head1 AUTHOR

Steven Haryanto <stevenharyanto@gmail.com>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Steven Haryanto.

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

=cut

