1
0
forked from Georg/pyacl
pyacl/tests/matrix.yaml
Georg Pfuetzenreuter 926b7e2c84
Deduplicate data in test matrix YAML
Avoid repetitive definitions by utilizing anchors.

Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
2024-09-17 00:50:41 +02:00

67 lines
1008 B
YAML

---
user:user:r:
user:
user:
read: true
write: false
execute: false
group: &null_ro
null:
read: true
write: false
execute: false
mask: *null_ro
other: *null_ro
user:user:-w-:
user:
user:
read: false
write: true
execute: false
group: *null_ro
mask:
null:
read: true
write: true
execute: false
other: *null_ro
user:user:--x:
user:
user:
read: false
write: false
execute: true
group: *null_ro
mask:
null:
read: true
write: false
execute: true
other: *null_ro
user:user:r-x:
user:
user:
read: true
write: false
execute: true
group: *null_ro
mask:
null:
read: true
write: false
execute: true
other: *null_ro
user:user:rwx:
user:
user:
read: true
write: true
execute: true
group: *null_ro
mask:
null:
read: true
write: true
execute: true
other: *null_ro