summaryrefslogtreecommitdiff
path: root/t/10_init.t
diff options
context:
space:
mode:
Diffstat (limited to 't/10_init.t')
-rwxr-xr-xt/10_init.t14
1 files changed, 9 insertions, 5 deletions
diff --git a/t/10_init.t b/t/10_init.t
index 9e50a93..2ed4567 100755
--- a/t/10_init.t
+++ b/t/10_init.t
@@ -10,6 +10,7 @@ use Git::Annex;
use File::chdir;
use File::Temp qw(tempdir);
use t::Setup;
+use t::Util;
use File::Spec::Functions qw(catfile file_name_is_absolute);
{
@@ -45,10 +46,13 @@ use File::Spec::Functions qw(catfile file_name_is_absolute);
# "Git::Repository has correct toplevel";
# };
-with_temp_annexes {
- my $source1_dir = catfile shift, "source1";
- my $annex = Git::Annex->new(catfile $source1_dir, "foo");
- is $annex->toplevel, $source1_dir, "it rises to top of working tree";
-};
+SKIP: {
+ skip "git-annex not available", 1 unless git_annex_available;
+ with_temp_annexes {
+ my $source1_dir = catfile shift, "source1";
+ my $annex = Git::Annex->new(catfile $source1_dir, "foo");
+ is $annex->toplevel, $source1_dir, "it rises to top of working tree";
+ };
+}
done_testing;