Codebase list pysmb / 1142f77b-e431-4ef0-998e-b94d2cefc016/upstream python2 / tests / NetBIOSTests / test_queryname.py
1142f77b-e431-4ef0-998e-b94d2cefc016/upstream

Tree @1142f77b-e431-4ef0-998e-b94d2cefc016/upstream (Download .tar.gz)

test_queryname.py @1142f77b-e431-4ef0-998e-b94d2cefc016/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)