From 4eb47ecb614685e4af7a29e02f493f2b8206d5d1 Mon Sep 17 00:00:00 2001 From: Brian Recchia Date: Mon, 23 Jan 2017 13:42:54 -0500 Subject: [PATCH] is it macos that's causing this problem?? --- lib/composure.bash | 6 ++++-- test/lib/composure.bats | 7 ++----- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/lib/composure.bash b/lib/composure.bash index 5fc75a57..2a6b3d7a 100755 --- a/lib/composure.bash +++ b/lib/composure.bash @@ -1,4 +1,6 @@ #!/usr/bin/env bash #echo $0 >&2 -#. "${BASH_IT}/lib/composure/composure.sh" -. "$BASH_IT/lib/composure/composure.sh" +#echo $BASH_IT >&2 +#set >&2 +. $BASH_IT/lib/composure/composure.sh +#. $(dirname "$0")/b.sh diff --git a/test/lib/composure.bats b/test/lib/composure.bats index 0ed2e7f1..e842dbb8 100755 --- a/test/lib/composure.bats +++ b/test/lib/composure.bats @@ -1,11 +1,8 @@ #!/usr/bin/env bats load ../test_helper -load $BATS_TEST_DIRNAME/../../lib/composure/composure.sh -run pwd -run echo $BASH_IT - +load ../../lib/composure @test "lib composure: composure_keywords()" { - run composure_keywords + run _composure_keywords assert_output "about author example group param version" }