Some refactoring & documentation changes in search.
[wolnelektury.git] / apps / search / tests / index.py
index ed02c23..5b37cf0 100644 (file)
@@ -1,12 +1,15 @@
 from __future__ import with_statement
 
-from search import Index, Search
+from search import Index, Search, IndexStore
 from catalogue import models
 from catalogue.test_utils import WLTestCase
+from lucene import PolishAnalyzer, Version
 #from nose.tools import raises
 from os import path
 
 
+
+
 class BookSearchTests(WLTestCase):
     def setUp(self):
         WLTestCase.setUp(self)
@@ -14,7 +17,7 @@ class BookSearchTests(WLTestCase):
         txt = path.join(path.dirname(__file__), 'files/fraszka-do-anusie.xml')
         self.book = models.Book.from_xml_file(txt)
 
-        search = Index()
+        search = Index() #PolishAnalyzer(Version.LUCENE_34))
         with search:
             search.index_book(self.book)
         print "index: %s" % search