Example #1
0
 def startTest(self, test):
     self.stream.write(
         self.__format_module(test) + lightgrey(".") +
         self.__format_class(test) + lightgrey(".") +
         format_test_method_name(test) + lightgrey(" : "))
     self.stream.flush()
     self.last_test = test
Example #2
0
 def startTest(self, test):
     self.stream.write(
         self.__format_module(test) + lightgrey(".")
         + self.__format_class(test) + lightgrey(".")
         + format_test_method_name(test) + lightgrey(" : ")
     )
     self.stream.flush()
     self.last_test = test
Example #3
0
 def __format_class(self, test):
     if not self.__is_new_class(test):
         return lightgrey(test.__class__.__name__)
     return test.__class__.__name__
Example #4
0
 def __format_module(self, test):
     if not self.__is_new_module(test):
         return lightgrey(test.__class__.__module__)
     return format_module(test)
Example #5
0
 def __format_class(self, test):
     if not self.__is_new_class(test):
         return lightgrey(test.__class__.__name__)
     return test.__class__.__name__
Example #6
0
 def __format_module(self, test):
     if not self.__is_new_module(test):
         return lightgrey(test.__class__.__module__)
     return format_module(test)