[Groonga-commit] groonga/grntest [master] Use new directive syntax

Back to archive index

HAYASHI Kentaro null+****@clear*****
Mon Nov 19 13:21:34 JST 2012


HAYASHI Kentaro	2012-11-19 13:21:34 +0900 (Mon, 19 Nov 2012)

  New Revision: 69232b2cfd7202ddfd676fffe40eab83863dd94a
  https://github.com/groonga/grntest/commit/69232b2cfd7202ddfd676fffe40eab83863dd94a

  Log:
    Use new directive syntax

  Modified files:
    test/test-executor.rb

  Modified: test/test-executor.rb (+3 -3)
===================================================================
--- test/test-executor.rb    2012-11-13 13:48:35 +0900 (0a723c8)
+++ test/test-executor.rb    2012-11-19 13:21:34 +0900 (00256fb)
@@ -36,20 +36,20 @@ class TestExecutor < Test::Unit::TestCase
   class TestComment < self
     def test_disable_logging
       assert_predicate(@context, :logging?)
-      execute("# disable-logging")
+      execute("\#@disable-logging")
       assert_not_predicate(@context, :logging?)
     end
 
     def test_enable_logging
       @context.logging = false
       assert_not_predicate(@context, :logging?)
-      execute("# enable-logging")
+      execute("\#@enable-logging")
       assert_predicate(@context, :logging?)
     end
 
     def test_suggest_create_dataset
       mock(@executor).execute_suggest_create_dataset("shop")
-      execute("# suggest-create-dataset shop")
+      execute("\#@suggest-create-dataset shop")
     end
   end
 
-------------- next part --------------
HTML����������������������������...
Download 



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