~gary-lasker/software-center/launcher-integration-lp761851

« back to all changes in this revision

Viewing changes to test/test_xapian.py

  • Committer: Gary Lasker
  • Date: 2012-01-19 16:39:15 UTC
  • mfrom: (2566.1.113 trunk)
  • Revision ID: gary.lasker@canonical.com-20120119163915-lrgq5cdg6rttdn29
merge with trunk and fix conflicts to get 5.1.6 and lots of recent speedup/bug fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python
2
2
 
3
 
 
4
 
import sys
5
 
sys.path.insert(0,"../")
6
 
 
7
3
import unittest
8
4
import os
9
5
import xapian
 
6
 
 
7
from testutils import setup_test_env
 
8
setup_test_env()
 
9
 
10
10
from softwarecenter.enums import XapianValues
11
11
from softwarecenter.db.update import rebuild_database
12
12