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
Line 
1# -*- coding: ISO-8859-15 -*-
2#
3# $Id: test_test.py 295 2006-07-13 11:37:54Z joachim $
4import unittest
5
6from waeuptest import WAeUP_SRPTest
7
8class TestTesting(WAeUP_SRPTest):
9       
10    def testTest(self):
11        self.failUnless('AcademicsFolder' in
12            self.portal.portal_types.objectIds(),
13            "No AcademicsFolder type")
14
15def test_suite():
16    return unittest.TestSuite((
17        unittest.makeSuite(TestTesting),
18        ))
Note: See TracBrowser for help on using the repository browser.