1use strict;
2use warnings;
3
4use Test::More;
5
6# 2015-02-03 Safe.pm fails to load on Travis + 5.14
7BEGIN {
8    if ($ENV{TRAVIS} eq 'true' and $ENV{TRAVIS_PERL_VERSION} eq '5.14') {
9        plan skip_all => 'Travis/Safe/5.14';
10    }
11}
12
13use Safe;
14
15BEGIN { Safe->new }
16
17use Pegex;
18
19pegex('a: /a/')->parse('a');
20
21pass 'GitHub ingydotnet/jsony-pm issue #2 fixed';
22
23done_testing;
24