Codebase list pysmb / 0981f6d python3 / tests / NetBIOSTests / test_queryname.py
0981f6d

Tree @0981f6d (Download .tar.gz)

test_queryname.py @0981f6draw · history · blame

from nmb.NetBIOS import NetBIOS
from nose2.tools.decorators import with_teardown

conn = None

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

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