Created
February 11, 2015 16:34
-
-
Save initcron/f7ed29b580e7f4ec699c to your computer and use it in GitHub Desktop.
TDD 02 test/integration/default/bats/git_installed.bats
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bats | |
| @test "git binary is found in PATH" { | |
| run which git | |
| [ "$status" -eq 0 ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment