git/t/chainlint/case-comment.test

test_expect_success 'case-comment' '
(
	case "$x" in
	# found foo
	x) foo ;;
	# found other
	*)
		# treat it as bar
		bar
		;;
	esac
)
'