summaryrefslogtreecommitdiff
path: root/t/chainlint/case-comment.test
blob: 3f31ae901035496343592531b5bc22a61c919a05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
test_expect_success 'case-comment' '
(
	case "$x" in
	# found foo
	x) foo ;;
	# found other
	*)
		# treat it as bar
		bar
		;;
	esac
)
'