blob: b6dab377ca682b3ad86d2205481ae593e844ee4b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env bats
load test_helper
@test "check if do-files marked with always really do execute always" {
skip "Not yet implemented"
run redo always
[ $status -eq 0 ] && [ -e always_result ]
}
|