# PLEASE READ ME: the path to the func is where it is called not defined,
# you do not need to ref the func calling it
@mock.patch("path to where func is called") # src.fileName.funcBeingCalled
def test_testName(mock_functionName):
mock_functionName.return_value = 1
assert mock_functionName() == 1