1
0
mirror of https://github.com/git/git.git synced 2024-09-28 04:10:41 +02:00
git/t/t5319-multi-pack-index.sh

13 lines
266 B
Bash
Raw Normal View History

#!/bin/sh
test_description='multi-pack-indexes'
. ./test-lib.sh
test_expect_success 'write midx with no packs' '
test_when_finished rm -f pack/multi-pack-index &&
git multi-pack-index --object-dir=. write &&
test_path_is_file pack/multi-pack-index
'
test_done