It has to do with your locale settings. Specifically, the collating sequence is one with case-insensitivity.
For example, with LC_COLLATE set to en_AU.utf8 (the default on my system), you can see that it includes lowercase and uppercase together:
pax> case A in [a-b]) echo TRUE;; esac
TRUE
pax> _
but, if you get rid of the range specifier, it works as expected:
pax> case A in [ab]) echo TRUE;; esac
pax> _
That's because the first means between a and b inclusive which, for that collating sequence, includes A. For the latter means a and b only, not a range that would be affected by the collating sequence.
If you set your collating sequence to a case-sensitive one, it works as you expect:
pax> export LC_COLLATE="C"
pax> case A in [a-b]) echo TRUE;; esac
pax>
If you just want to do this as a one-off operation without affecting anything else, you can do it in a sub-shell:
( export LC_COLLATE="C" ; case A in [a-b]) echo TRUE;; esac )
nocaseglobis unrelated:If set, bash matches filenames in a case-insensitive fashion when performing pathname expansion (see Pathname Expansion above), though the behavior is still odd. – Daenyth May 22 '12 at 2:35