##// END OF EJS Templates
download button looks nicer displayed first
download button looks nicer displayed first

File last commit:

r3760:6302a142 beta
r3763:aab189b3 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...