Codebase list pysmb / d8e302b1-78d4-4509-871b-ef2459809d7c/upstream python3 / tests / NetBIOSTests / test_queryname.py
d8e302b1-78d4-4509-871b-ef2459809d7c/upstream

Tree @d8e302b1-78d4-4509-871b-ef2459809d7c/upstream (Download .tar.gz)

test_queryname.py @d8e302b1-78d4-4509-871b-ef2459809d7c/upstreamraw · history · blame

from nmb.NetBIOS import NetBIOS
from nose.tools import with_setup

conn = None

def teardown_func():
    global conn
    conn.close()

@with_setup(teardown = teardown_func)
def test_broadcast():
    global conn
    conn = NetBIOS()
    assert conn.queryName('MICHAEL-I5PC', timeout = 10)