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