blob: e4307010f9bb9291d0233af06965c954854993e0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env perl
use strict;
use warnings;
use 5.010;
use Test::More;
use Test::Compile;
my $test = Test::Compile->new();
$test->all_files_ok('bin/icli');
$test->done_testing();
|