[pywin32-checkins] pywin32/win32/test test_win32wnet.py,NONE,1.1
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
|
From: <mha...@us...> - 2003-07-02 04:07:39
|
Update of /cvsroot/pywin32/pywin32/win32/test
In directory sc8-pr-cvs1:/tmp/cvs-serv21140
Added Files:
test_win32wnet.py
Log Message:
win32wnet tests
--- NEW FILE: test_win32wnet.py ---
import unittest
import win32wnet, win32api
class TestCase(unittest.TestCase):
def testGetUser(self):
self.assertEquals(win32api.GetUserName(), win32wnet.WNetGetUser())
if __name__ == '__main__':
unittest.main()
|