The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/env perl

use strict;
use warnings;

use Test::More;

use Test::JSON;

foreach my $filename (glob('rdf_linkeddata*json')) {
	ok(open(CONFIG, '<' . $filename), "Test config file $filename opened OK");
	my $json = join("\n", <CONFIG>);
	close CONFIG;
	is_valid_json ($json, "File $filename contains valid JSON");
}

done_testing();