13 lines
137 B
Text
13 lines
137 B
Text
test_expect_success 'case-comment' '
|
|
(
|
|
case "$x" in
|
|
# found foo
|
|
x) foo ;;
|
|
# found other
|
|
*)
|
|
# treat it as bar
|
|
bar
|
|
;;
|
|
esac
|
|
)
|
|
'
|