Guest User

Untitled

a guest
Jan 22nd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class MockClient
  2. attr_reader :platform
  3.  
  4. @platform = 'x86/win32'
  5.  
  6. def send_request(request)
  7. (Class.new do
  8. def get_tlv_value(type)
  9. RESPONSE_TLVS[type]
  10. end
  11. end).new
  12. end
  13. end
Add Comment
Please, Sign In to add comment