about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2018-12-29 05:51:14 +0000
committerEric Wong <e@80x24.org>2018-12-29 07:03:59 +0000
commiteda591535fea60535b9eb7d3df319872daf8771e (patch)
tree2e51a6dc5240332f660a1d5bc632488e4374d603
parent1f2ddc7f2bae4a89dd91e1e371b88aab7e7f7ed4 (diff)
downloadpublic-inbox-eda591535fea60535b9eb7d3df319872daf8771e.tar.gz
We can't skip tests after "use_ok"
-rw-r--r--t/git.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/git.t b/t/git.t
index 5069ae2c..6538b6ca 100644
--- a/t/git.t
+++ b/t/git.t
@@ -8,8 +8,8 @@ my $dir = tempdir('pi-git-XXXXXX', TMPDIR => 1, CLEANUP => 1);
 use Cwd qw/getcwd/;
 use PublicInbox::Spawn qw(popen_rd);
 
-use_ok 'PublicInbox::Git';
 eval { require IPC::Run } or plan skip_all => 'IPC::Run missing';
+use_ok 'PublicInbox::Git';
 
 {
         is(system(qw(git init -q --bare), $dir), 0, 'created git directory');