-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathload.bash
More file actions
19 lines (17 loc) · 842 Bytes
/
load.bash
File metadata and controls
19 lines (17 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
##
# Helpers and assertions for BATs testing.
#
# Central loading point for all the helpers and assertions.
# @see https://bats-core.readthedocs.io/en/stable/writing-tests.html#bats-load-library-load-system-wide-libraries
#
# shellcheck disable=1090
source "$(dirname "${BASH_SOURCE[0]}")/src/assert.base.bash"
source "$(dirname "${BASH_SOURCE[0]}")/src/assert.command.bash"
source "$(dirname "${BASH_SOURCE[0]}")/src/assert.string.bash"
source "$(dirname "${BASH_SOURCE[0]}")/src/assert.file.bash"
source "$(dirname "${BASH_SOURCE[0]}")/src/assert.git.bash"
source "$(dirname "${BASH_SOURCE[0]}")/src/fixture.bash"
source "$(dirname "${BASH_SOURCE[0]}")/src/dataprovider.bash"
source "$(dirname "${BASH_SOURCE[0]}")/src/mock.bash"
source "$(dirname "${BASH_SOURCE[0]}")/src/steps.bash"
source "$(dirname "${BASH_SOURCE[0]}")/src/tui.bash"