test/testhelpers: implement 'repo_endpoint' helper

This commit is contained in:
Taylor Blau 2017-02-15 17:25:50 -07:00
parent c2735aaeb7
commit dc353e9328

@ -348,6 +348,16 @@ substring_position() {
| wc -c
}
# repo_endpoint returns the LFS endpoint for a given server and repository.
#
# [ "$GITSERVER/example/repo.git/info/lfs" = "$(repo_endpoint $GITSERVER example-repo)" ]
repo_endpoint() {
local server="$1"
local repo="$2"
echo "$server/$repo.git/info/lfs"
}
# setup initializes the clean, isolated environment for integration tests.
setup() {
cd "$ROOTDIR"