Pytest simple module to be tested


An anagram is a pair of words containing the exact same letters in different order. For example:


examples/pytest/mymod_1.py
def is_anagram(a_word, b_word):
    return sorted(a_word) == sorted(b_word)