File: //opt/alt/python27/lib64/python2.7/site-packages/Crypto/SelfTest/st_common.pyo
�
�/�Oc           @   s�   d  Z  d Z d d l Z d d l Z d d l Z e j d d k rc e j d d k rc d d l Tn  d d l Td e j f d	 �  �  YZ	 d
 �  Z
 d �  Z d �  Z d
 �  Z
 d S(   s%   Common functions for SelfTest moduless   $Id$i����Ni    i   i   (   t   *t   _list_testloaderc           B   s   e  Z e Z RS(    (   t   __name__t
   __module__t   listt
   suiteClass(    (    (    sL   /opt/alt/python27/lib64/python2.7/site-packages/Crypto/SelfTest/st_common.pyR   $   s   c         C   s   t  �  j |  � S(   s�   Return a list of TestCase instances given a TestCase class
    This is useful when you have defined test* methods on your TestCase class.
    (   R   t   loadTestsFromTestCase(   t   class_(    (    sL   /opt/alt/python27/lib64/python2.7/site-packages/Crypto/SelfTest/st_common.pyt   list_test_cases'