]> git.ipfire.org Git - thirdparty/git.git/blob - t/chainlint/case-comment.test
Merge branch 'en/fetch-negotiation-default-fix'
[thirdparty/git.git] / t / chainlint / case-comment.test
1 (
2 case "$x" in
3 # found foo
4 x) foo ;;
5 # found other
6 *)
7 # treat it as bar
8 bar
9 ;;
10 esac
11 )