Changes between Version 1 and Version 2 of Ticket #32489, comment 2


Ignore:
Timestamp:
Feb 28, 2021, 6:01:11 PM (3 years ago)
Author:
Chris Jerdonek

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32489, comment 2

    v1 v2  
    44def iter_test_cases(suite):
    55    """Return an iterator over a test suite's unittest.TestCase objects."""
     6    # Django permits custom TestSuite classes, so use the caller's class.
    67    suite_class = type(suite)
    78    for test in suite:
Back to Top