This repository has been archived on 2021-09-15 . You can view files and clone it, but cannot push or open issues or pull requests.
9 lines
207 B
Ruby
9 lines
207 B
Ruby
# -*- coding: utf-8 -*-
|
|||
|
|||
class TestInetAddress < Test::Unit::TestCase
|
|||
def test_responds_to_properties
|
|||
a = GLib::InetAddress.new_any(GLib::Socket::FAMILY_IPV4)
|
|||
assert a.respond_to?(:any?)
|
|||
end
|
|||
end
|