Code & Deploy
Code
Models
Repos
Sign in
@matheusbsbs
/
matheus-bagliano
matheus-bagliano
/
t
/
Git-SVN
/
Utils
/
can_compress.t
Code
Commits
Pulls
CI/CD
81,841
master
bisect
jch
maint
master
next
seen
test
todo
t
11 lines
214 Bytes
Copy permalink
Copy
Raw
1
#!/usr/bin/perl
2
3
use
strict
;
4
use
warnings
;
5
6
use
Test::
More
'
no_plan
';
7
8
use
Git::SVN::
Utils
qw(can_compress)
;
9
10
# !! is the "convert this to boolean" operator.
11
is
!!
can_compress
(),
!!
eval
{
require
Compress::
Zlib
};