Beispiel #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
Beispiel #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
Beispiel #3
0
 def __format_class(self, test):
     if not self.__is_new_class(test):
         return lightgrey(test.__class__.__name__)
     return test.__class__.__name__
Beispiel #4
0
 def __format_module(self, test):
     if not self.__is_new_module(test):
         return lightgrey(test.__class__.__module__)
     return format_module(test)
Beispiel #5
0
 def __format_class(self, test):
     if not self.__is_new_class(test):
         return lightgrey(test.__class__.__name__)
     return test.__class__.__name__
Beispiel #6
0
 def __format_module(self, test):
     if not self.__is_new_module(test):
         return lightgrey(test.__class__.__module__)
     return format_module(test)