t / t5319-multi-pack-index.shon commit midx: write header information to lockfile (fc59e74)
   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