##// END OF EJS Templates
invalidation: don't create CacheInvalidation records on startup...
invalidation: don't create CacheInvalidation records on startup Creating the records early gave an advantage before lightweight was introduced. With lightweight it is no longer necessary. The records will be created on demand anyway and there is no reason to create and maintain them before they are used.

File last commit:

r2434:f2946967 codereview
r3774:60335b70 beta
Show More
test_pullrequests.py
9 lines | 268 B | text/x-python | PythonLexer
pull requests draft UI
r2244 from rhodecode.tests import *
Added basic models for saving open pull requests...
r2434
pull requests draft UI
r2244 class TestPullrequestsController(TestController):
def test_index(self):
Added basic models for saving open pull requests...
r2434 self.log_user()
response = self.app.get(url(controller='pullrequests', action='index',
repo_name=HG_REPO))