From 87270c2962609f9cbf4a26de14fb23de9cdaed57 Mon Sep 17 00:00:00 2001 From: Nils Winkler Date: Tue, 6 Jun 2017 07:26:50 +0200 Subject: [PATCH] Copy all of Bash-it during the helper tests --- test/lib/helpers.bats | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/lib/helpers.bats b/test/lib/helpers.bats index 47fdb229..1a1fd45c 100644 --- a/test/lib/helpers.bats +++ b/test/lib/helpers.bats @@ -9,9 +9,11 @@ cite _about _param _example _group _author _version load ../../lib/helpers function local_setup { - mkdir -p $BASH_IT/plugins + mkdir -p $BASH_IT lib_directory="$(cd "$(dirname "$0")" && pwd)" - cp -r $lib_directory/../../plugins/available $BASH_IT/plugins + cp -r $lib_directory/../.. $BASH_IT + mkdir -p $BASH_IT/aliases/enabled + mkdir -p $BASH_IT/completion/enabled mkdir -p $BASH_IT/plugins/enabled }