This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Updated HTTP::Tiny to CPAN version 0.011
[perl5.git] / cpan / HTTP-Tiny / t / 000_load.t
1 #!perl
2 #
3 # This file is part of HTTP-Tiny
4 #
5 # This software is copyright (c) 2011 by Christian Hansen.
6 #
7 # This is free software; you can redistribute it and/or modify it under
8 # the same terms as the Perl 5 programming language system itself.
9 #
10
11 use strict;
12 use warnings;
13
14 use Test::More 0.88 tests => 1;
15
16 require_ok('HTTP::Tiny');
17
18 local $HTTP::Tiny::VERSION = $HTTP::Tiny::VERSION || 'from repo';
19 note("HTTP::Tiny $HTTP::Tiny::VERSION, Perl $], $^X");
20