Skip to content

Instantly share code, notes, and snippets.

@shomah4a
Created May 20, 2011 02:45
Show Gist options
  • Save shomah4a/982254 to your computer and use it in GitHub Desktop.
Save shomah4a/982254 to your computer and use it in GitHub Desktop.
mock
import socket
import mock
@mock.mock(socket)
def gethostname():
return 10
@gethostname
def mocktest():
socket.gethostname() # => 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment