mirror of
https://github.com/rocky-linux/os-autoinst-distri-rocky.git
synced 2024-11-01 03:21:24 +00:00
1eb4e3dca5
Inspired by openQA's 01-compile-check-all.t, this adds a perl test which checks the syntax of main.pm and all lib and test files, and hooks it up to CI. Requires os-autoinst and perl-Test-Strict. Signed-off-by: Adam Williamson <awilliam@redhat.com>
8 lines
175 B
Perl
8 lines
175 B
Perl
#!/bin/perl
|
|
|
|
use FindBin;
|
|
unshift @INC, "/usr/libexec/os-autoinst", "$FindBin::Bin/../lib", "$FindBin::Bin/lib";
|
|
|
|
use Test::Strict;
|
|
all_perl_files_ok(qw 'main.pm lib tests');
|