Codebase list pysmb / 18682be7-1565-40bf-98e6-e03b91b25f80/main python3 / tests / NetBIOSTests / test_queryname.py
18682be7-1565-40bf-98e6-e03b91b25f80/main

Tree @18682be7-1565-40bf-98e6-e03b91b25f80/main (Download .tar.gz)

test_queryname.py @18682be7-1565-40bf-98e6-e03b91b25f80/mainraw · 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)