about summary refs log tree commit diff
path: root/t/lib/jitterbug/Test.pm
blob: 824aa68e52e33870c1399e18af160e61c6cbeab1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package jitterbug::Test;
use strict;
use warnings;
use FindBin qw($Bin);

BEGIN{

   qx{perl -Ilib $Bin/../scripts/deploy_schema $Bin/data/test.yml}
      unless -r qq{$Bin/data/jitterbug.db};
};
   

1;