Changeset 2757 in products for quintagroup.gdocs.spreadsheet/trunk
- Timestamp:
- Aug 17, 2010 2:33:04 PM (14 years ago)
- Location:
- quintagroup.gdocs.spreadsheet/trunk/quintagroup/gdocs/spreadsheet/tests
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
quintagroup.gdocs.spreadsheet/trunk/quintagroup/gdocs/spreadsheet/tests/test_doctest.py
r2725 r2757 6 6 7 7 from quintagroup.gauth.interfaces import IGAuthUtility 8 import quintagroup.gdocs.spreadsheet.content.gspreadsheet as gspreadsheet 8 9 from quintagroup.gdocs.spreadsheet.tests import base 9 10 … … 14 15 import quintagroup.gdocs.spreadsheet.tests.adapters 15 16 17 18 def tearDown(test): 19 """This is the companion to setUp - it can be used to clean up the 20 test environment after each test. 21 """ 16 22 17 23 def test_suite(): … … 25 31 doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS, 26 32 setUp=setUp, 33 tearDown=tearDown, 27 34 ), 35 ztc.ZopeDocFileSuite('tests/test_adapters.txt', 36 package='quintagroup.gdocs.spreadsheet', 37 test_class=base.FunctionalTestCase, 38 optionflags=doctest.REPORT_ONLY_FIRST_FAILURE | 39 doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS, 40 setUp=setUp, 41 tearDown=tearDown, 42 ), 43 ztc.ZopeDocFileSuite('tests/test_context.txt', 44 package='quintagroup.gdocs.spreadsheet', 45 test_class=base.FunctionalTestCase, 46 optionflags=doctest.REPORT_ONLY_FIRST_FAILURE | 47 doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS, 48 setUp=setUp, 49 tearDown=tearDown, 50 ), 51 28 52 ]) 29 53
Note: See TracChangeset
for help on using the changeset viewer.