diff options
Diffstat (limited to 'test.bats')
-rwxr-xr-x | test.bats | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -100,11 +100,14 @@ _EOF cd "${TMP}/${CHILD}" + echo important > untracked_file + run main echo "${output}" | grep "Updated" [ "$(cat a)" = "3" ] + [ "$(cat untracked_file)" = "important" ] [ "${status}" -eq 0 ] } |