Switching to `` requires one more \ to escape $Config in new_config=`...`
[p5sagit/p5-mst-13.2.git] / t / lib / autodie / version.t
CommitLineData
0b09a93a 1#!/usr/bin/perl -w
2use strict;
3use Test::More tests => 3;
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;
12require autodie::exception;
13require autodie::exception::system;
14
15is($Fatal::VERSION, $autodie::VERSION);
16is($autodie::VERSION, $autodie::exception::VERSION);
17is($autodie::exception::VERSION, $autodie::exception::system::VERSION);