The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use HTTP::UA::Parser;
use strict;
use Test::More;
use FindBin qw($Bin);

my $source = 'test_resources/pgts_browser_list.yaml';

if ($ENV{TRAVIS} || $ENV{DEV_TESTS}){
    eval {
        require($Bin . '/utils.pl');
        my $yaml = get_test_yaml($source);
        my $r = HTTP::UA::Parser->new();
        foreach my $st (@{$yaml}){
            next if $st->{js_ua};
            $r->parse($st->{user_agent_string});
            my $ua = $r->ua;
            is ($ua->family, $st->{family});
            is ($ua->major, $st->{major});
            is ($ua->minor, $st->{minor});
            is ($ua->patch, $st->{patch});
        }
    };
    
    if ($@){
        diag $@;
        plan skip_all => 'Couldn\'t fetch tests file ' . $source;
    }
} else {
    plan skip_all => 'Set environment DEV_TESTS To run this test';
}

done_testing();

1;