Last change
on this file since 272 was
263,
checked in by lregebro, 18 years ago
|
Profiles that work.
|
-
Property svn:keywords set to
Id
|
File size:
390 bytes
|
Line | |
---|
1 | # -*- coding: ISO-8859-15 -*- |
---|
2 | # |
---|
3 | # $Id: test_test.py 263 2006-06-22 18:38:04Z lregebro $ |
---|
4 | import unittest |
---|
5 | |
---|
6 | from waeuptest import WAeUPTest |
---|
7 | |
---|
8 | class TestTesting(WAeUPTest): |
---|
9 | |
---|
10 | def testTest(self): |
---|
11 | self.failUnless('AcademicsFolder' in |
---|
12 | self.portal.portal_types.objectIds(), |
---|
13 | "No AcademicsFolder type") |
---|
14 | |
---|
15 | def test_suite(): |
---|
16 | return unittest.TestSuite(( |
---|
17 | unittest.makeSuite(TestTesting), |
---|
18 | )) |
---|
Note: See
TracBrowser for help on using the repository browser.