How to use while function to pytest
from labo3 import char InWord # Test cases for char InWord: def test_char InWord_10): assert char InWord("word", "d") == True def test_char InWord_2(): assert char InWord("", "d") == False def test_char InWord_30: assert char InWord(8, "d") == None def test_char InWord_40): assert char InWord("word", True) == None def test_char InWord_50): assert char InWord("abcde", "f") == False This file contains several incomplete function definitions with stub # values. Lab3 tests.py should have tests to check if the functions are correct. # Your assignment is to complete each function according to the # functions descriptions. # Once you complete a function, use pytest on the test functions # in labo3_tests.py to see if your functions are working correctly def char InWord(word, char): -char InWord() takes in a parameter word and another parameter char and determines whether char is contained in word. -If word is not a string type, or if char is not a string type, the function should return None. - If word contains the letter char, the function should return True. Otherwise, it should return false. - Note: When char is of type string, it should be of length 1. For example, char will be a single letter like "a" or "z. We will not test for cases where char is more than one character, like char = "ab" -*** Note: you will need to use a while loop and string indexing. *** -*** You will not get full credit if you use other loops or the in operator. *** return "stub" This file contains several incomplete function definitions with stub # values. labo3_tests.py should have tests to check if the functions are correct. # Your assignment is to complete each function according to the # functions descriptions. # Once you complete a function, use pytest on the test functions * # in labo3_tests.py to see if your functions are working correctly def char InWord(word, char): -char InWord() takes in a parameter word and another parameter char and determines whether char is contained in word. - If word is not a string type, or if char is not a string type, the function should return None. - If word contains the letter char, the function should return True. Otherwise, it should return false. - Note: When char is of type string, it should be of length 1. For example, char will be a single letter like "a" or "z." We will not test for cases where char is more than one character, like char = "ab" - *** Note: you will need to use a while loop and string indexing. .*** You will not get full credit if you use other loops or the in operator. *** return "stub