gen2stage4/tests/0002.bats
lucianposton 94b0040499
Add BATS tests with automated github workflow (#34)
Added tests, including test cases for:
* the -b option
* the -c (connman) option
* the -e option
* the -k option
* the -l option
* portage dirs


Signed-off-by: Lucian Poston <lucianposton@pm.me>
2020-02-07 00:59:18 +01:00

28 lines
474 B
Bash

#!/usr/bin/env bats
load test_helper
setup() {
f test/usr/bin/ping
f test/usr/bin/lost+found
f test/lost+found
mkstage4.sh -q -l -t test test
}
teardown() {
rm -rf test test.tar.bz2
}
@test "/usr/bin/ping is included" {
assert_tar_includes test/usr/bin/ping
}
@test "/usr/bin/lost+found is excluded" {
assert_tar_excludes test/usr/bin/lost+found
}
@test "/lost+found is excluded" {
assert_tar_excludes test/lost+found
}
# vim: ft=bash