##// END OF EJS Templates
fixed issue with h.person() function returned prematurly giving only email info from changeset metadata. Thanks to Stevan Radaković
fixed issue with h.person() function returned prematurly giving only email info from changeset metadata. Thanks to Stevan Radaković

File last commit:

r3646:63e49418 beta
r3740:ea2c948a beta
Show More
test_followers.py
24 lines | 797 B | text/x-python | PythonLexer
from rhodecode.tests import *
class TestFollowersController(TestController):
def test_index_hg(self):
self.log_user()
repo_name = HG_REPO
response = self.app.get(url(controller='followers',
action='followers',
repo_name=repo_name))
response.mustcontain("""test_admin""")
response.mustcontain("""Started following""")
def test_index_git(self):
self.log_user()
repo_name = GIT_REPO
response = self.app.get(url(controller='followers',
action='followers',
repo_name=repo_name))
response.mustcontain("""test_admin""")
response.mustcontain("""Started following""")