summaryrefslogtreecommitdiffstats
path: root/t/t5319-multi-pack-index.sh
blob: 50e80f8f2cde8c151af0594d75f6c2c4a8c0909c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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