Sha256: bbc1391b3a06caf16b074e53bd23074832a1817e9d93fc1144cd7cd762429065
Contents?: true
Size: 909 Bytes
Versions: 268
Compression:
Stored size: 909 Bytes
Contents
#!/usr/bin/env bash set -e source test/setup use Test::More clone-foo-and-bar ( cd $OWNER/bar git tag -a annotated_tag -m "My annotated tag" git tag lightweight_tag ) # >& /dev/null || die # Do the subrepo clone with tag and test the output: { clone_output="$( cd $OWNER/foo git subrepo clone ../bar/.git -b lightweight_tag light )" # Check output is correct: is "$clone_output" \ "Subrepo '../bar/.git' (lightweight_tag) cloned into 'light'." \ 'subrepo clone lightweight tag command output is correct' } # Do the subrepo clone with tag and test the output: { clone_output="$( cd $OWNER/foo git subrepo clone ../bar/.git -b annotated_tag ann 2>&1 || true )" # Check output is correct: is "$clone_output" \ "Subrepo '../bar/.git' (annotated_tag) cloned into 'ann'." \ 'subrepo clone annotated command output is correct' } done_testing teardown
Version data entries
268 entries across 268 versions & 4 rubygems