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