[Groonga-commit] groonga/grntest [master] no check -> not check

Back to archive index

Kouhei Sutou null+****@clear*****
Sat Aug 11 20:36:11 JST 2012


Kouhei Sutou	2012-08-11 20:36:11 +0900 (Sat, 11 Aug 2012)

  New Revision: 3c22240b976b415c5b9389b59ac080d88059f34c
  https://github.com/groonga/grntest/commit/3c22240b976b415c5b9389b59ac080d88059f34c

  Log:
    no check -> not check

  Modified files:
    lib/groonga/tester.rb

  Modified: lib/groonga/tester.rb (+12 -12)
===================================================================
--- lib/groonga/tester.rb    2012-08-11 20:34:41 +0900 (6ff1c50)
+++ lib/groonga/tester.rb    2012-08-11 20:36:11 +0900 (99c6341)
@@ -469,10 +469,10 @@ module Groonga
         @reporter.fail_test(self, result)
       end
 
-      def no_check_test(result)
+      def not_check_test(result)
         @status = "not checked"
         @result.test_not_checked
-        @reporter.no_check_test(self, result)
+        @reporter.not_check_test(self, result)
       end
 
       def finish_test(result)
@@ -617,7 +617,7 @@ module Groonga
             :failure
           end
         else
-          :no_check
+          :not_checked
         end
       end
     end
@@ -651,7 +651,7 @@ module Groonga
           output_reject_file(result.actual)
           succeeded = false
         else
-          @worker.no_check_test(result)
+          @worker.not_check_test(result)
           output_actual_file(result.actual)
         end
         @worker.finish_test(result)
@@ -1501,7 +1501,7 @@ EOF
         if long_elapsed_time?(elapsed_time)
           elapsed_time_status = :failure
         else
-          elapsed_time_status = :no_check
+          elapsed_time_status = :not_checked
         end
       end
 
@@ -1570,7 +1570,7 @@ EOF
           if result.n_failed_tests > 0
             :failure
           elsif result.n_not_checked_tests > 0
-            :no_check
+            :not_checked
           else
             :success
           end
@@ -1589,8 +1589,8 @@ EOF
           "%s%s%s" % [success_color, message, reset_color]
         when :failure
           "%s%s%s" % [failure_color, message, reset_color]
-        when :no_check
-          "%s%s%s" % [no_check_color, message, reset_color]
+        when :not_checked
+          "%s%s%s" % [not_checked_color, message, reset_color]
         else
           message
         end
@@ -1622,7 +1622,7 @@ EOF
                         })
       end
 
-      def no_check_color
+      def not_checked_color
         escape_sequence({
                           :color => :magenta,
                           :color_256 => [3, 0, 3],
@@ -1723,7 +1723,7 @@ EOF
         end
       end
 
-      def no_check_test(worker, result)
+      def not_check_test(worker, result)
         synchronize do
           report_test_result_mark("N", result)
           puts
@@ -1792,7 +1792,7 @@ EOF
         report_failure(result)
       end
 
-      def no_check_test(worker, result)
+      def not_check_test(worker, result)
         report_test_result(result, worker.status)
         report_actual(result)
       end
@@ -1845,7 +1845,7 @@ EOF
         end
       end
 
-      def no_check_test(worker, result)
+      def not_check_test(worker, result)
         redraw do
           report_test(worker, result)
           report_actual(result)
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index