def test___getitem___support_files( self ): from Products.Zelenium.zuite import _SUPPORT_FILES zuite = self._makeOne() for name in _SUPPORT_FILES.keys(): object = zuite[ name ] self.assertEqual( object.meta_type, 'File' )
def _listDefaultArchiveNames( self, include_selenium=True ): from Products.Zelenium.zuite import _SUPPORT_FILES expected_names = [] expected_names.append( 'index.html' ) expected_names.append( 'testSuite.html' ) if include_selenium: expected_names.extend( _SUPPORT_FILES.keys() ) return expected_names