From f8cc109fed465b1cec3a11f69e1b19584ae08b4d Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Sun, 25 Jul 2021 23:48:54 +0300 Subject: [PATCH] Add bats-support, needed for bats-assert. --- .gitmodules | 3 +++ tests/bats_helpers/bats-support | 1 + tests/test_mnpw.bats | 1 + 3 files changed, 5 insertions(+) create mode 160000 tests/bats_helpers/bats-support diff --git a/.gitmodules b/.gitmodules index 4774102..1d34c44 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ [submodule "tests/bats_helpers/bats-assert"] path = tests/bats_helpers/bats-assert url = https://github.com/bats-core/bats-assert.git +[submodule "tests/bats_helpers/bats-support"] + path = tests/bats_helpers/bats-support + url = https://github.com/bats-core/bats-support.git diff --git a/tests/bats_helpers/bats-support b/tests/bats_helpers/bats-support new file mode 160000 index 0000000..d140a65 --- /dev/null +++ b/tests/bats_helpers/bats-support @@ -0,0 +1 @@ +Subproject commit d140a65044b2d6810381935ae7f0c94c7023c8c3 diff --git a/tests/test_mnpw.bats b/tests/test_mnpw.bats index f5c028f..d019edc 100644 --- a/tests/test_mnpw.bats +++ b/tests/test_mnpw.bats @@ -1,6 +1,7 @@ # vim:ft=bash setup () { + load "bats_helpers/bats-support/load" load "bats_helpers/bats-assert/load" PATH="$BATS_TEST_DIRNAME/../dist:$PATH" } -- GitLab