AlexJakeGreen/gatherit-cookbook

View on GitHub
test/integration/default/bats/git_installed.bats

Summary

Maintainability
Test Coverage
#!/usr/bin/env bats

@test "git binary is found in PATH" {
  run which git
  [ "$status" -eq 0 ]
}