Skip to content

Instantly share code, notes, and snippets.

@iamlile
iamlile / mock_tcp_socket.rb
Created September 5, 2017 05:40 — forked from earlonrails/mock_tcp_socket.rb
Mock tcp socket for spec tests with ruby!!!
require 'socket'
require 'mocks'
TCP_NEW = TCPSocket.method(:new) unless defined? TCP_NEW
#
# Example:
# mock_tcp_next_request("<xml>junk</xml>")
#
class FakeTCPSocket