50e80f8f2cde8c151af0594d75f6c2c4a8c0909c
   1#!/bin/sh
   2
   3test_description='multi-pack-indexes'
   4. ./test-lib.sh
   5
   6test_expect_success 'write midx with no packs' '
   7        test_when_finished rm -f pack/multi-pack-index &&
   8        git multi-pack-index --object-dir=. write &&
   9        test_path_is_file pack/multi-pack-index
  10'
  11
  12test_done