From d9010b0e2d0f615953af01f5e11d6e6fc2e80f7a Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Fri, 13 Nov 2020 11:24:40 +0100 Subject: [PATCH] integration: update README to link to bats-core We switched to bats-core in commit d4bc7c10ecda77c7c97572229f50914dd7c85d6a, so updating the instructions to match. Signed-off-by: Sebastiaan van Stijn --- tests/integration/README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/tests/integration/README.md b/tests/integration/README.md index 229a61355..2ce93907b 100644 --- a/tests/integration/README.md +++ b/tests/integration/README.md @@ -9,7 +9,8 @@ Integration tests on the other hand are meant to test a specific feature end to end. Integration tests are written in *bash* using the -[bats](https://github.com/sstephenson/bats) framework. +[bats (Bash Automated Testing System)](https://github.com/bats-core/bats-core) +framework. ## Running integration tests @@ -31,13 +32,14 @@ $ make integration TESTPATH="/checkpoint.bats" ``` -To run them on your host, you will need to setup a development environment plus -[bats](https://github.com/sstephenson/bats#installing-bats-from-source) +To run them on your host, you need to set up a development environment plus +[bats (Bash Automated Testing System)](https://github.com/bats-core/bats-core#installing-bats-from-source). + For example: ``` $ cd ~/go/src/github.com -$ git clone https://github.com/sstephenson/bats.git -$ cd bats +$ git clone https://github.com/bats-core/bats-core.git +$ cd bats-core $ ./install.sh /usr/local ```