diff options
Diffstat (limited to '')
-rwxr-xr-x | .travis/bin/mutual_friends.sh (renamed from .travis/test/mutual_friends.sh) | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.travis/test/mutual_friends.sh b/.travis/bin/mutual_friends.sh index ebecf8e..4a00fb8 100755 --- a/.travis/test/mutual_friends.sh +++ b/.travis/bin/mutual_friends.sh @@ -7,13 +7,17 @@ set -o errexit -o nounset -o pipefail +script_dir="$( dirname -- "${BASH_SOURCE[0]}" )" +script_dir="$( cd -- "$script_dir" && pwd )" +readonly script_dir + test_users() { - ./.travis/test.sh bin.mutual_friends --format csv "$@" - ./.travis/test.sh bin.mutual_friends --format json "$@" + "$script_dir/../lib/test.sh" bin.mutual_friends --format csv "$@" + "$script_dir/../lib/test.sh" bin.mutual_friends --format json "$@" } main() { test_users kreed58 maxkorzh_official } -main "$@" +main |