X-Git-Url: https://git.madduck.net/code/vcsh.git/blobdiff_plain/494ebfd73b4177ff5d25f15df5847b653cc0417f..00e44097d5e7112acb7decd2d606d929b2c71a2f:/t/999-tear-env.t diff --git a/t/999-tear-env.t b/t/999-tear-env.t new file mode 100644 index 0000000..afe261a --- /dev/null +++ b/t/999-tear-env.t @@ -0,0 +1,17 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use Shell::Command; +use Test::Most; + +chdir 't' or die $!; + +if (!-d 'etc') { + plan skip_all => 'No need to tear previous env.'; +} + +ok rm_rf 'etc'; + +done_testing;