Skip to content
Snippets Groups Projects
Commit 0e6e66d3 authored by Andy Yates's avatar Andy Yates
Browse files

Splitting the permissions checks out more

parent e7dcb7cb
No related branches found
No related tags found
No related merge requests found
......@@ -141,7 +141,9 @@ sub test_path {
ok($user_r && $user_w, "$prefix is RW by user");
ok($group_r, "$prefix is R by group");
ok($other_r, "$prefix is R by other");
ok(!$user_rwx && !$group_rwx && !$other_rwx, "$prefix is not RWX by user, group and owner");
ok(!$user_rwx, "$prefix is not RWX by user");
ok(!$group_rwx, "$prefix is not RWX by group");
ok(!$other_rwx, "$prefix is not RWX by owner");
if($self->opts->{group}) {
my $group = $self->opts->{group};
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment