merge wyszukiwania.
[wolnelektury.git] / apps / search / tests / index.py
index ed02c23..c2b9110 100644 (file)
@@ -3,6 +3,7 @@ from __future__ import with_statement
 from search import Index, Search
 from catalogue import models
 from catalogue.test_utils import WLTestCase
+from lucene import PolishAnalyzer, Version
 #from nose.tools import raises
 from os import path
 
@@ -14,7 +15,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