mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
12 lines
112 B
Python
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")
|