Raw
1 #!/bin/sh
2
3 test_description='tests for git-history command'
4
5 . ./test-lib.sh
6
7 test_expect_success 'does nothing without any arguments' '
8 test_must_fail git history 2>err &&
9 test_grep "need a subcommand" err
10 '
11
12 test_expect_success 'raises an error with unknown argument' '
13 test_must_fail git history garbage 2>err &&
14 test_grep "unknown subcommand: .garbage." err
15 '
16
17 test_done