3 test_description='test multi-tree read-tree without merging'
 
   6 . "$TEST_DIRECTORY"/lib-read-tree.sh
 
   8 test_expect_success setup '
 
  11         git commit -m initial &&
 
  15         git commit -m second &&
 
  16         git checkout -b side initial &&
 
  24 test_expect_success 'multi-read' '
 
  25         read_tree_must_succeed initial master side &&
 
  26         (echo a; echo b/c) >expect &&
 
  27         git ls-files >actual &&
 
  28         test_cmp expect actual