class TestMockSocket

Public Instance Methods

test_all() click to toggle source
# File vendor/qwik/lib/qwik/mock-socket.rb, line 73
def test_all
  # test_initialize
  s = QuickML::MockSocket.new('')

  # test_print
  s.print('t')
  is ['t'], s.buffer
end