PyTest - Test Organization
Which of the following is the correct way to import a test module named
test_math.py inside another test module?test_math.py inside another test module?A: import test-math invalid syntax due to hyphen.B: import test_math.py invalid; omit .py extension.C: import math imports standard library module.D: import test_math is correct.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions