/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to tests/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2007-02-03 10:25:09 UTC
  • Revision ID: jelmer@samba.org-20070203102509-im0cna70r892xzse
Move some files to the top-level directory, add first test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
from unittest import TestLoader, TestSuite
 
18
from bzrlib.tests import TestUtil
 
19
 
18
20
 
19
21
def test_suite():
20
22
    result = TestSuite()
21
23
 
22
 
    loader = TestLoader()
 
24
    loader = TestUtil.TestLoader()
 
25
 
 
26
    testmod_names = ['test_preferences']
 
27
    result.addTest(loader.loadTestsFromModuleNames(["%s.%s" % (__name__, i) for i in testmod_names]))
23
28
    return result
24
29