Files
codeql/python/ql/test/query-tests/Functions/general/use_mox.py
2018-11-19 15:15:54 +00:00

12 lines
112 B
Python

import mox
#Use mox
mox
def f():
pass
#This may be OK as it might be mocked
f().AndReturns("Something")