1
0
mirror of https://github.com/gryf/wicd.git synced 2026-01-09 15:24:14 +01:00

Updated Preferences dialog and added test cases for wnettools

This commit is contained in:
Adam Blackburn
2008-12-23 11:39:55 -06:00
parent c737a5d7d2
commit 43d6acfc47
5 changed files with 641 additions and 548 deletions

9
tests/__init__.py Normal file
View File

@@ -0,0 +1,9 @@
def run_tests():
import unittest
test_suite = unittest.TestSuite()
import testwnettools
test_suite.addTest(testwnettools.suite())
unittest.TextTestRunner(verbosity=5).run(test_suite)