We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f7e5d5 commit 0282efeCopy full SHA for 0282efe
t/alien_build_plugin_core_cleaninstall.t
@@ -30,7 +30,7 @@ subtest 'basic' => sub {
30
ok !-e "$dir/lib/libfoo.a";
31
};
32
33
-subtest 'do not remove on system install' => sub {
+subtest 'do remove on system install' => sub {
34
35
my $build = alienfile_ok q{
36
use alienfile;
@@ -50,10 +50,10 @@ subtest 'do not remove on system install' => sub {
50
51
ok -d "$dir/_alien";
52
ok -f "$dir/_alien/alienfile";
53
- ok -f "$dir/foo.txt";
54
- ok -f "$dir/bin/myexe";
55
- ok -f "$dir/include/myheader.h";
56
- ok -f "$dir/lib/libfoo.a";
+ ok !-e "$dir/foo.txt";
+ ok !-e "$dir/bin/myexe";
+ ok !-e "$dir/include/myheader.h";
+ ok !-e "$dir/lib/libfoo.a";
57
58
59
subtest 'do not try to remove when it isn\'t there' => sub {
0 commit comments