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

Last change on this file since 264 was 263, checked in by lregebro, 18 years ago

Profiles that work.

  • Property svn:keywords set to Id
File size: 390 bytes
RevLine 
[260]1# -*- coding: ISO-8859-15 -*-
2#
3# $Id: test_test.py 263 2006-06-22 18:38:04Z lregebro $
4import unittest
5
6from waeuptest import WAeUPTest
7
8class TestTesting(WAeUPTest):
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.