[Groonga-commit] droonga/fluent-plugin-droonga at 344ee2a [master] Follow input and output adapter split

Back to archive index

Yoji Shidara null+****@clear*****
Wed Jan 15 18:04:38 JST 2014


Yoji Shidara	2014-01-15 18:04:38 +0900 (Wed, 15 Jan 2014)

  New Revision: 344ee2a546099de401ae89e47baa70d1b2135fc1
  https://github.com/droonga/fluent-plugin-droonga/commit/344ee2a546099de401ae89e47baa70d1b2135fc1

  Message:
    Follow input and output adapter split

  Modified files:
    test/unit/plugin/adapter/groonga/test_select.rb

  Modified: test/unit/plugin/adapter/groonga/test_select.rb (+12 -5)
===================================================================
--- test/unit/plugin/adapter/groonga/test_select.rb    2014-01-08 11:18:20 +0900 (c461c36)
+++ test/unit/plugin/adapter/groonga/test_select.rb    2014-01-15 18:04:38 +0900 (3874aac)
@@ -13,11 +13,12 @@
 # License along with this library; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
-require "droonga/plugin/adapter/groonga/select"
+require "droonga/plugin/input_adapter/groonga/select"
+require "droonga/plugin/output_adapter/groonga/select"
 
-class AdapterGroongaSelectTest < Test::Unit::TestCase
+class InputAdapterGroongaSelectTest < Test::Unit::TestCase
   def setup
-    @select = Droonga::GroongaAdapter::Select.new
+    @select = Droonga::GroongaInputAdapter::Select.new
   end
 
   class RequestTest < self
@@ -52,7 +53,7 @@ class AdapterGroongaSelectTest < Test::Unit::TestCase
 
     private
     def convert(select_request)
-      @select.convert_request(select_request)
+      @select.convert(select_request)
     end
 
     class OutputColumnsTest < self
@@ -244,6 +245,12 @@ class AdapterGroongaSelectTest < Test::Unit::TestCase
       end
     end
   end
+end
+
+class OutputAdapterGroongaSelectTest < Test::Unit::TestCase
+  def setup
+    @select = Droonga::GroongaOutputAdapter::Select.new
+  end
 
   class ResponseTest < self
     def test_empty
@@ -274,7 +281,7 @@ class AdapterGroongaSelectTest < Test::Unit::TestCase
 
     private
     def convert(search_response)
-      @select.convert_response(search_response)
+      @select.convert(search_response)
     end
   end
 end
-------------- next part --------------
HTML����������������������������...
Download 



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