This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update the Change log in Module::CoreList to include recent commits
[perl5.git] / cpan / autodie / t / version.t
CommitLineData
0b09a93a
PF
1#!/usr/bin/perl -w
2use strict;
9b657a62 3use Test::More tests => 4;
0b09a93a
PF
4
5# For the moment, we'd like all our versions to be the same.
6# In order to play nicely with some code scanners, they need to be
7# hard-coded into the files, rather than just nicking the version
8# from autodie::exception at run-time.
9
10require Fatal;
11require autodie;
9b657a62 12require autodie::hints;
0b09a93a
PF
13require autodie::exception;
14require autodie::exception::system;
15
16is($Fatal::VERSION, $autodie::VERSION);
17is($autodie::VERSION, $autodie::exception::VERSION);
18is($autodie::exception::VERSION, $autodie::exception::system::VERSION);
9b657a62 19is($Fatal::VERSION, $autodie::hints::VERSION);