Update tests

This commit is contained in:
Eric Renfro 2024-08-03 16:16:46 -04:00
parent a17b7944ea
commit 21049359ad
Signed by: psi-jack
SSH key fingerprint: SHA256:1TKB8Z257L8EHK8GWNxKgMhD8a+FAR+f+j3nnlcuNVM
2 changed files with 8 additions and 8 deletions

View file

@ -40,8 +40,8 @@ teardown() {
assert_tar_includes test/usr/bin/ping
}
@test "/usr/bin/lost+found is included" {
assert_tar_includes test/usr/bin/lost+found
@test "/usr/bin/lost+found is excluded" {
assert_tar_excludes test/usr/bin/lost+found
}
@test "/usr/src/linux-uname/.config is included" {
@ -169,8 +169,8 @@ teardown() {
assert_tar_includes test/var/log/portage/elog/.keep_sys-apps_portage-0
}
@test "/home/user/.bash_history is included" {
assert_tar_includes test/home/user/.bash_history
@test "/home/user/.bash_history is excluded" {
assert_tar_excludes test/home/user/.bash_history
}
@test "/root/.bash_history is included" {

View file

@ -17,12 +17,12 @@ teardown() {
assert_tar_includes test/usr/bin/ping
}
@test "/usr/bin/lost+found is excluded" {
assert_tar_excludes test/usr/bin/lost+found
@test "/usr/bin/lost+found is included" {
assert_tar_includes test/usr/bin/lost+found
}
@test "/lost+found is excluded" {
assert_tar_excludes test/lost+found
@test "/lost+found is included" {
assert_tar_includes test/lost+found
}
# vim: ft=bash