Codebase list pysmb / 12ccbdcf-64fc-46aa-b4fa-232961beee91/upstream python3 / tests / NetBIOSTests / test_queryname.py
12ccbdcf-64fc-46aa-b4fa-232961beee91/upstream

Tree @12ccbdcf-64fc-46aa-b4fa-232961beee91/upstream (Download .tar.gz)

test_queryname.py @12ccbdcf-64fc-46aa-b4fa-232961beee91/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)