repo.or.cz
/
alt-git.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'tk/stripspace' into maint
[alt-git.git]
/
t
/
Git-SVN
/
Utils
/
can_compress.t
blob
d7b49b8d546ab46c94364647b2ac8c272575718a
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
};