~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/tests/test_filechangecache.py

tidy up turbosimpletal a bit, add recompilation templates that have changed on
disk.

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):