A powerful testing framework for ZSH projects

#!/usr/bin/env zunit

@test 'App should run' {
  run my-app

  assert $state equals 0
  assert "$output" same_as "It worked!"
}
Read the DocumentationView on Github