source: waeup_product/trunk/tests/test_test.py @ 261

Last change on this file since 261 was 260, checked in by joachim, 18 years ago

Added tests + some more.

  • Property svn:keywords set to Id
File size: 278 bytes
RevLine 
[260]1# -*- coding: ISO-8859-15 -*-
2#
3# $Id: test_test.py 260 2006-06-22 12:42:52Z joachim $
4import unittest
5
6from waeuptest import WAeUPTest
7
8class TestTesting(WAeUPTest):
9       
10    def testTest(self):
11        print "works!"
12
13def test_suite():
14    return unittest.TestSuite((
15        unittest.makeSuite(TestTesting),
16        ))
Note: See TracBrowser for help on using the repository browser.