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/foo"
add-new-files bar/file
git subrepo --quiet branch bar
)
test-exists \
"$OWNER/foo/.git/refs/heads/subrepo/bar" \
"$OWNER/foo/.git/refs/subrepo/bar/fetch"
is "$(
cd "$OWNER/foo"
git subrepo clean bar
)" \
"Removed branch 'subrepo/bar'." \
"subrepo clean command output is correct"
test-exists \
"!$OWNER/foo/.git/refs/heads/subrepo/bar"
(
cd "$OWNER/foo"
git subrepo clean --force bar
)
test-exists \
"!$OWNER/foo/.git/refs/subrepo/bar/fetch"
done_testing
teardown
|