Ignore:
Timestamp:
Aug 5, 2010 12:20:15 PM (14 years ago)
Author:
liebster
Message:

Added browser testing creation and modification GSpreadsheet

Location:
quintagroup.gdocs.spreadsheet/trunk/quintagroup/gdocs/spreadsheet/tests
Files:
3 added
1 edited

Legend:

Unmodified
Added
Removed
  • quintagroup.gdocs.spreadsheet/trunk/quintagroup/gdocs/spreadsheet/tests/test_doctest.py

    r2708 r2725  
    22import doctest 
    33 
    4 #from zope.testing import doctestunit 
    5 #from zope.component import testing, eventtesting 
    6  
     4import zope.component 
    75from Testing import ZopeTestCase as ztc 
    86 
     7from quintagroup.gauth.interfaces import IGAuthUtility 
    98from quintagroup.gdocs.spreadsheet.tests import base 
     9 
     10 
     11def setUp(test): 
     12 
     13    """substitution using the adapter services gdata""" 
     14    import quintagroup.gdocs.spreadsheet.tests.adapters 
     15 
    1016 
    1117def test_suite(): 
     
    1723            test_class=base.FunctionalTestCase, 
    1824            optionflags=doctest.REPORT_ONLY_FIRST_FAILURE | 
    19                 doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS), 
    20  
     25                doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS, 
     26            setUp=setUp, 
     27            ), 
    2128        ]) 
    2229 
Note: See TracChangeset for help on using the changeset viewer.