~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/tests/test_filechangecache.py

  • Committer: Martin Albisetti
  • Date: 2008-06-23 20:07:13 UTC
  • mto: (157.1.3 loggerhead)
  • mto: This revision was merged to the branch mainline in revision 187.
  • Revision ID: argentina@gmail.com-20080623200713-kpbo8f8yiswxf32w
 * Show branch nick in changelog

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
from loggerhead.changecache import FileChangeCache
7
7
 
8
 
class MockEntry(object):
 
8
class MockEntry:
9
9
    def __init__(self, revid):
10
10
        self.revid = revid
11
11
 
12
12
 
13
 
class MockHistory(object):
 
13
class MockHistory:
14
14
    def __init__(self):
15
15
        self.fetched_revids = set()
16
16
    def get_file_changes_uncached(self, entries):