The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# t/02-readonly.t
#
# vim: syntax=perl

use Test::More tests => 3;

use strict;
use warnings;

my $gittestdir = qw( t/01-initdb.git );
my $ver1 = '7dd8415a7e1cd131fba134c1da4c603ecf4974e2';
my $ver2 = 'a573e9bbcaeed0be9329b25e2831a930f5b656ca';
my $ver3 = '3b5047486706e55528a2684daef195bb4f9d0923';

if ( not -d $gittestdir ) {
    die "Test repo not found - did you run 01-initdb.t already?";
}

use_ok( 'Config::Versioned' );

my $cfg = Config::Versioned->new( {dbpath => $gittestdir });
ok( $cfg, 'create new config instance' );
is( $cfg->version, $ver3, 'check version of HEAD' );