blob: 6698a2d41ce16ab5d155f91404d3e68743f3ea61 (
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" {
run redo always
sync
[ $status -eq 0 ] && [ -e always_result ]
}
|