Mercurial > p > roundup > code
diff test/test_indexer.py @ 2089:93f03c6714d8
A few big changes in this commit:
1. The current indexer has been moved to backends/indexer_dbm in
anticipation of my writing an indexer_rdbms,
2. Changed indexer invocation during create / set to follow the pattern
set by the metakit backend, which was much cleaner, and
3. The "content" property of FileClass is now mutable in all but the
metakit backend.
Metakit needs to be changed to support the editing of "content". Hey, and
I learnt today that the metakit backend implements its own indexer. How
about that... :)
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 19 Mar 2004 04:47:59 +0000 |
| parents | f63aa57386b0 |
| children | 0e1860dcb328 9c8de04a76b1 |
line wrap: on
line diff
--- a/test/test_indexer.py Thu Mar 18 22:47:00 2004 +0000 +++ b/test/test_indexer.py Fri Mar 19 04:47:59 2004 +0000 @@ -18,11 +18,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -# $Id: test_indexer.py,v 1.3 2003-10-25 22:53:26 richard Exp $ +# $Id: test_indexer.py,v 1.4 2004-03-19 04:47:59 richard Exp $ import os, unittest, shutil -from roundup.indexer import Indexer +from roundup.backends.indexer_dbm import Indexer class IndexerTest(unittest.TestCase): def setUp(self):
