Exemplo n.º 1
0
 def addSuccess(self, test):
     if self.passesCount():
         MockableTestResult.addSuccess(self, test)
         self.stream.writeln( \
             "  {0}{1}{2} has expanded your awareness.{3}{4}" \
             .format(Fore.GREEN, Style.BRIGHT, test._testMethodName, \
             Fore.RESET, Style.NORMAL))
         self.pass_count += 1
Exemplo n.º 2
0
 def addSuccess(self, test):
     if self.passesCount():
         MockableTestResult.addSuccess(self, test)
         self.stream.writeln( \
             "  {0}{1}{2} has expanded your awareness.{3}{4}" \
             .format(Fore.GREEN, Style.BRIGHT, test._testMethodName, \
             Fore.RESET, Style.NORMAL))
         self.pass_count += 1
Exemplo n.º 3
0
 def addSuccess(self, test):
     if self.passesCount():
         MockableTestResult.addSuccess(self, test)
         import re
         test_method = re.sub('test_', '', test._testMethodName)
         self.stream.writeln( \
             " {0}{1} Good Job!! You have finished {2}.{3}{4}" \
             .format(Fore.GREEN, Style.BRIGHT, test_method, \
             Fore.RESET, Style.NORMAL))
         self.pass_count += 1
Exemplo n.º 4
0
 def addSuccess(self, test):
     if self.passesCount():
         MockableTestResult.addSuccess(self, test)
         self.stream.writeln(
             "  {0}{1}{2} has expanded your awareness.{3}{4}".format(
                 Fore.GREEN, Style.BRIGHT, test._testMethodName, Fore.RESET,
                 Style.NORMAL))
         if not self.run_optional:
             self.pass_count += 1
         else:
             self.optional_pass_count += 1
Exemplo n.º 5
0
    def addSuccess(self, test):
        if self.passesCount():
            MockableTestResult.addSuccess(self, test)
            import re

            test_method = re.sub("test_", "", test._testMethodName)
            self.stream.writeln(
                " {0}{1} Good Job!! You have finished {2}.{3}{4}".format(
                    Fore.GREEN, Style.BRIGHT, test_method, Fore.RESET, Style.NORMAL
                )
            )
            self.pass_count += 1
Exemplo n.º 6
0
 def addSuccess(self, test):
     if self.passesCount():            
         MockableTestResult.addSuccess(self, test)
         self.stream.writeln("  {0} has expanded your awareness.".format(test._testMethodName))
         self.pass_count += 1
Exemplo n.º 7
0
 def addSuccess(self, test):
     if self.passesCount():
         MockableTestResult.addSuccess(self, test)
         self.stream.writeln("  {0} has expanded your awareness.".format(
             test._testMethodName))
         self.pass_count += 1