There is a function called find_luck(). We do not know its code, but we know exactly how it works — given a string, it returns an object if 'luck' is contained in the string, and None otherwise. Write tests for this function (use assertIsNotNone and assertIsNone).
In this Code Challenge, you do not need to import the module with the function at the beginning of the code. To call the function, just type its name, find_luck().