1#!/usr/bin/perl 2 3use strict; 4use warnings; 5 6use Test::More 'no_plan'; 7 8use Git::SVN::Utils qw(can_compress); 9 10# !! is the "convert this to boolean" operator. 11is !!can_compress(), !!eval { require Compress::Zlib };
#!/usr/bin/perl
use strict;
use warnings;
use Test::More 'no_plan';
use Git::SVN::Utils qw(can_compress);
# !! is the "convert this to boolean" operator.
is !!can_compress(), !!eval { require Compress::Zlib };