So this is not about the pumping lemma and how it works, it's about a pre-condition.
Everywhere in the net you can read, that regular languages must pass the pumping lemma, but noweher anybody talks about finite languages, which actually are a part of regular languages.
So we might all aggree, that the following language is a finite language as well as it's a regular one, but it definitely does not pass the pumping lemma:
L = {'abc', 'defghi'}
Please, tell me if simply no one writes about it or why we're wrong - or even not.
Finite languages are regular languages by definition because you can build a regular expression that satisfies it by just expressing the union of all the words (e.g.
(abc)|(defghi)
is a regular expression that satisfies your language) and consequently you can have a deterministic finite automaton that satisfies it.Not being able to pass the pumping lemma does not means that the language is not regular. In fact, to use the pumping lemma your language must have some kind of closure in its definition. If your language is just a set of words there is nothing to "pump" in it.