Extract some utilities from git-svn to allow extracting Git::SVN.
[alt-git.git] / t / Git-SVN / Utils / can_compress.t
blobd7b49b8d546ab46c94364647b2ac8c272575718a
1 #!/usr/bin/perl
3 use strict;
4 use warnings;
6 use Test::More 'no_plan';
8 use Git::SVN::Utils qw(can_compress);
10 # !! is the "convert this to boolean" operator.
11 is !!can_compress(), !!eval { require Compress::Zlib };