Codebase list pysmb / f58b8ae python3 / tests / NetBIOSTests / test_queryname.py
f58b8ae

Tree @f58b8ae (Download .tar.gz)

test_queryname.py @f58b8aeraw · 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)