3 test_description
='some bundle related tests'
6 test_expect_success
'setup' '
11 git commit -m initial &&
18 git commit -m second &&
25 test_expect_success
'tags can be excluded by rev-list options' '
27 git bundle create bundle --all --since=7.Apr.2005.15:16:00.-0700 &&
28 git ls-remote bundle > output &&
33 test_expect_success
'die if bundle file cannot be created' '
36 test_must_fail git bundle create adir --all
40 test_expect_failure
'bundle --stdin' '
42 echo master | git bundle create stdin-bundle.bdl --stdin &&
43 git ls-remote stdin-bundle.bdl >output &&
48 test_expect_failure
'bundle --stdin <rev-list options>' '
50 echo master | git bundle create hybrid-bundle.bdl --stdin tag &&
51 git ls-remote hybrid-bundle.bdl >output &&