The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use strict;
use warnings;

use Test::More;
use Test::Snapshots;

my $python = `python --version 2>&1`;
#diag $python;

if (not defined $python or $python !~ /^Python/) {
	plan skip_all => 'Could not find python on this system';
}

Test::Snapshots::command('python');
Test::Snapshots::set_glob('*.py');
test_all_snapshots('eg/python');