[CMF-checkins] CVS: CMF - test_Topic.py:1.3
Jeffrey Shell
jeffrey@digicool.com
Tue, 27 Mar 2001 11:17:15 -0500 (EST)
Update of /cvs-repository/CMF/CMFTopic/tests
In directory korak:/home/jeffrey/InstanceHomes/cmf-dev/CMF/CMFTopic/tests
Modified Files:
test_Topic.py
Log Message:
Some minor updates to the TestCase class, no real test changes.
--- Updated File test_Topic.py in package CMF --
--- test_Topic.py 2001/03/06 15:16:12 1.2
+++ test_Topic.py 2001/03/27 16:17:14 1.3
@@ -9,14 +9,7 @@
class TestCase( unittest.TestCase ):
- """
- """
- def setUp( self ):
- pass
-
- def tearDown( self ):
- pass
-
+ """ Test all the general Topic cases """
def test_Empty( self ):
topic = Topic('top')
assert len(topic._criteriaTypes) == 3
@@ -62,7 +55,8 @@
topic._setObject('crit__foo', SSC('crit__foo', 'foo'))
topic._setObject('crit__bar', SIC('crit__bar', 'bar'))
- class CritRecord: pass
+ class CritRecord:
+ pass
foorec = CritRecord()
barrec = CritRecord()