Signed-off-by: Christian Couder <[email protected]>
---
t/t0500-external-odb.sh | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/t/t0500-external-odb.sh b/t/t0500-external-odb.sh
index 4ccca1e965..f924de870f 100755
--- a/t/t0500-external-odb.sh
+++ b/t/t0500-external-odb.sh
@@ -69,4 +69,12 @@ test_expect_success 'helper can add objects to alt repo' '
test "$size" -eq "$alt_size"
'
+test_expect_success 'commit adds objects to alt repo' '
+ test_config odb.magic.scriptCommand "$HELPER" &&
+ test_commit three &&
+ hash3=$(git ls-tree HEAD | grep three.t | cut -f1 | cut -d\ -f3) &&
+ content=$(git -C alt-repo show "$hash3") &&
+ test "$content" = "three"
+'
+
test_done
--
2.17.0.rc0.37.g8f476fabe9