/loggerhead/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/loggerhead/trunk

« back to all changes in this revision

Viewing changes to loggerhead/tests/test_simple.py

test empty branch with cache too

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
        testutil.create_request('/project/branch/changes')
130
130
        assert 'No revisions!' in cherrypy.response.body[0]
131
131
 
 
132
class TestEmptyBranchWithCache(TestEmptyBranch):
 
133
    config_template = """
 
134
    testing = True
 
135
    [project]
 
136
        [[branch]]
 
137
            branch_name = 'branch'
 
138
            folder = '%(branch)s'
 
139
            cachepath = '%(branch)s/cache'
 
140
    """
 
141