| 1 | #!/bin/sh |
| 2 | |
| 3 | test_description='Test reflog display routines' |
| 4 | GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main |
| 5 | export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME |
| 6 | |
| 7 | . ./test-lib.sh |
| 8 | |
| 9 | test_expect_success 'setup' ' |
| 10 | test_commit A |
| 11 | ' |
| 12 | |
| 13 | test_expect_success 'usage' ' |
| 14 | test_expect_code 129 git reflog exists && |
| 15 | test_expect_code 129 git reflog exists -h |
| 16 | ' |
| 17 | |
| 18 | test_expect_success 'usage: unknown option' ' |
| 19 | test_expect_code 129 git reflog exists --unknown-option |
| 20 | ' |
| 21 | |
| 22 | test_expect_success 'reflog exists works' ' |
| 23 | git reflog exists refs/heads/main && |
| 24 | test_must_fail git reflog exists refs/heads/nonexistent |
| 25 | ' |
| 26 | |
| 27 | test_expect_success 'reflog exists works with a "--" delimiter' ' |
| 28 | git reflog exists -- refs/heads/main && |
| 29 | test_must_fail git reflog exists -- refs/heads/nonexistent |
| 30 | ' |
| 31 | |
| 32 | test_expect_success 'reflog exists works with a "--end-of-options" delimiter' ' |
| 33 | git reflog exists --end-of-options refs/heads/main && |
| 34 | test_must_fail git reflog exists --end-of-options refs/heads/nonexistent |
| 35 | ' |
| 36 | |
| 37 | test_done |