コード例 #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
コード例 #2
0
ファイル: sensei.py プロジェクト: ruzhytskyi/Koans
 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
コード例 #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
コード例 #4
0
ファイル: sensei.py プロジェクト: polarization/python_koans
 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
コード例 #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
コード例 #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
コード例 #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