##// END OF EJS Templates
Use changelog controller for displaying history of files....
Use changelog controller for displaying history of files. step 1 for removing obsolete shortlog

File last commit:

r3760:6302a142 beta
r3760:6302a142 beta
Show More
test_shortlog.py
16 lines | 504 B | text/x-python | PythonLexer
from rhodecode.tests import *
class TestShortlogController(TestController):
def test_index_hg(self):
self.log_user()
response = self.app.get(url(controller='shortlog', action='index',
repo_name=HG_REPO))
# Test response...
def test_index_git(self):
self.log_user()
response = self.app.get(url(controller='shortlog', action='index',
repo_name=GIT_REPO))
# Test response...