File: socket_interaction_test.rb

package info (click to toggle)
ruby-backports 3.25.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,912 kB
  • sloc: ruby: 11,757; makefile: 6
file content (9 lines) | stat: -rw-r--r-- 210 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
require './test/test_helper'

class TestSocketInteraction < Test::Unit::TestCase
  def test_interaction # Issue #67
    require 'backports'
    require 'socket'
    assert_equal nil, UDPSocket.open{}
  end
end