1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
#!/usr/bin/env bash
set -e
source test/setup
use Test::More
clone-foo-and-bar
subrepo-clone-bar-into-foo
(
cd "$OWNER/bar"
add-new-files Bar2
git tag -a CoolTag -m "Should stay in subrepo"
git push
) &> /dev/null || die
# Fetch information
{
is "$(
cd "$OWNER/foo"
git subrepo fetch bar
)" \
"Fetched 'bar' from '$UPSTREAM/bar' (master)." \
'subrepo fetch command output is correct'
}
# Check that there is no tags fetched
{
is "$(
cd "$OWNER/foo"
git tag -l 'CoolTag'
)" \
"" \
'No tag is available'
}
done_testing
teardown
|