7ef0d62730
Merge commit '1b593e1ea4d2af0f6444d9a7788d5d99abd6fde5' as 'third_party/git'
11 lines
214 B
Perl
Executable file
11 lines
214 B
Perl
Executable file
#!/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 };
|