##// END OF EJS Templates
added initial_repo_scan flag for controll if repo scaning should be performed on every startup....
added initial_repo_scan flag for controll if repo scaning should be performed on every startup. There's always paster repo-scan or repo scann triggered from admin pannel

File last commit:

r3646:63e49418 beta
r3778:88f11b5e beta
Show More
test_followers.py
24 lines | 797 B | text/x-python | PythonLexer
added tests for forks and followers pages
r1375 from rhodecode.tests import *
Use only mustcontain for testing response body
r3646
added tests for forks and followers pages
r1375 class TestFollowersController(TestController):
Use only mustcontain for testing response body
r3646 def test_index_hg(self):
added tests for forks and followers pages
r1375 self.log_user()
repo_name = HG_REPO
response = self.app.get(url(controller='followers',
action='followers',
repo_name=repo_name))
Use only mustcontain for testing response body
r3646 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""")