Skip to content

v2.0.0

Compare
Choose a tag to compare
@toolmantim toolmantim released this 05 Jun 04:19
· 81 commits to main since this release
5070895

What's Changed

Full Changelog: v1.1.0...v2.0.0

Upgrading

BATS_PATH has been renamed to BATS_PLUGIN_PATH (see #44 for details). Your plugin tests will need to be updated, for example:

 #!/usr/bin/env bats
 
-load "$BATS_PATH/load.bash"
+load "$BATS_PLUGIN_PATH/load.bash"

@test "prints some output" {
  run $PWD/hooks/command
  assert_output --partial "some output"
  assert_success
}