Changeset 981

Show
Ignore:
Timestamp:
09/27/07 04:02:35
Author:
deo
Message:

Whitespaces.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • qSEOptimizer/branches/additional-keywords/tests/testQSEOptimizer.py

    r978 r981  
    7979 
    8080    def test_skins_install(self): 
    81         skinstool=getToolByName(self.portal, 'portal_skins')  
     81        skinstool=getToolByName(self.portal, 'portal_skins') 
    8282 
    8383        for skin in skinstool.getSkinSelections(): 
     
    113113        self.qi.uninstallProducts([PRODUCT]) 
    114114        self.assertNotEqual(self.qi.isProductInstalled(PRODUCT), True,'qSEOptimizer is already installed') 
    115         skinstool=getToolByName(self.portal, 'portal_skins')  
     115        skinstool=getToolByName(self.portal, 'portal_skins') 
    116116 
    117117        for skin in skinstool.getSkinSelections(): 
     
    139139        self.assert_(not PRODUCT in [a.getId() for a in configTool.listActions()], 'Configlet found after uninstallation') 
    140140 
     141 
    141142class TestResponse(PloneTestCase.FunctionalTestCase): 
    142143 
     
    189190        m = re.match('.*<!--\\s*no comments\\s*-->', self.html, re.S|re.M) 
    190191        self.assert_(m, 'Comments not set in') 
    191      
     192 
    192193    def testTagsOrder(self): 
    193194        m = re.search('name="description".+name="keywords"', self.html, re.S|re.M) 
    194195        self.assert_(m, "Meta tags order not supported.") 
     196 
    195197 
    196198class TestAdditionalKeywords(PloneTestCase.FunctionalTestCase): 
     
    313315 
    314316        self.assert_(m, 'DC meta tags not avaliable when createManager=True') 
     317 
    315318 
    316319TESTS = [TestInstallation, TestResponse, TestAdditionalKeywords, TestExposeDCMetaTags]