Ignore:
Timestamp:
Feb 10, 2010 5:29:25 PM (14 years ago)
Author:
mylan
Message:

Revert last commit, whic was mix of two changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • quintagroup.canonicalpath/trunk/quintagroup/canonicalpath/tests.py

    r1696 r1697  
    55from Testing import ZopeTestCase as ztc 
    66 
    7 from Products.Five import zcml 
    8 from Products.Five import fiveconfigure 
    9 from Products.PloneTestCase import PloneTestCase as ptc 
    10 from Products.PloneTestCase.layer import PloneSite 
    11 ptc.setupPloneSite() 
    12  
    13 import quintagroup.canonicalpath 
    14  
    15 class TestCase(ptc.PloneTestCase): 
    16     class layer(PloneSite): 
    17         @classmethod 
    18         def setUp(cls): 
    19             fiveconfigure.debug_mode = True 
    20             zcml.load_config('configure.zcml', 
    21                              quintagroup.canonicalpath) 
    22             fiveconfigure.debug_mode = False 
    23  
    24         @classmethod 
    25         def tearDown(cls): 
    26             pass 
    27  
    28  
    297def test_suite(): 
    308    return unittest.TestSuite([ 
    319 
    32         # Unit tests 
    33         #doctestunit.DocFileSuite( 
    34         #    'README.txt', package='quintagroup.canonicalpath', 
    35         #    setUp=testing.setUp, tearDown=testing.tearDown), 
     10        # Unit tests for your API 
     11        doctestunit.DocFileSuite( 
     12            'README.txt', package='quintagroup.canonicalpath', 
     13            setUp=testing.setUp, tearDown=testing.tearDown), 
    3614 
    3715        #doctestunit.DocTestSuite( 
     
    3917        #    setUp=testing.setUp, tearDown=testing.tearDown), 
    4018 
    41  
    42         # Integration tests that use PloneTestCase 
     19        # Integration tests that use ZopeTestCase 
    4320        #ztc.ZopeDocFileSuite( 
    4421        #    'README.txt', package='quintagroup.canonicalpath', 
    45         #    test_class=TestCase), 
     22        #    setUp=testing.setUp, tearDown=testing.tearDown), 
    4623 
    4724        #ztc.FunctionalDocFileSuite( 
    48         #    'browser.txt', package='quintagroup.canonicalpath', 
    49         #    test_class=TestCase), 
     25        #    'browser.txt', package='quintagroup.canonicalpath'), 
    5026 
    5127        ]) 
Note: See TracChangeset for help on using the changeset viewer.