12 lines
289 B
Plaintext
12 lines
289 B
Plaintext
|
|
#!/usr/bin/env bats
|
||
|
|
|
||
|
|
@test "backtunnel-umount shows usage with no args" {
|
||
|
|
run scripts/backtunnel-umount
|
||
|
|
[ "$status" -ne 0 ]
|
||
|
|
[[ "$output" == *"Usage:"* ]]
|
||
|
|
}
|
||
|
|
|
||
|
|
@test "backtunnel-umount integration (scaffold)" {
|
||
|
|
skip "TODO: create a temporary FUSE mount and verify unmount behavior"
|
||
|
|
}
|