source: products/qPingTool/branches/plone-3.1/tests/testSkeleton.py

Last change on this file was 202, checked in by mylan, 18 years ago

Change sending notification e-mail from secureSend() to send().
Add to notification templates mail fields: To, From, Subject

File size: 340 bytes
Line 
1#
2# qPingTool TestCase
3#
4
5from Testing import ZopeTestCase
6
7ZopeTestCase.installProduct('qPingTool')
8
9class TestSomething(ZopeTestCase.ZopeTestCase):
10
11    def afterSetUp(self):
12        pass
13
14def test_suite():
15    from unittest import TestSuite, makeSuite
16    suite = TestSuite()
17    suite.addTest(makeSuite(TestSomething))
18    return suite
Note: See TracBrowser for help on using the repository browser.