source: WAeUP_SRP/trunk/tests/test_test.py @ 491

Last change on this file since 491 was 295, checked in by joachim, 18 years ago

=Courses and Certificates Folder added

  • Property svn:keywords set to Id
File size: 398 bytes
RevLine 
[260]1# -*- coding: ISO-8859-15 -*-
2#
3# $Id: test_test.py 295 2006-07-13 11:37:54Z joachim $
4import unittest
5
[295]6from waeuptest import WAeUP_SRPTest
[260]7
[295]8class TestTesting(WAeUP_SRPTest):
[260]9       
10    def testTest(self):
[263]11        self.failUnless('AcademicsFolder' in
12            self.portal.portal_types.objectIds(),
13            "No AcademicsFolder type")
[260]14
15def test_suite():
16    return unittest.TestSuite((
17        unittest.makeSuite(TestTesting),
18        ))
Note: See TracBrowser for help on using the repository browser.