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