Files
@ 8bd7a637cea0
Branch filter:
Location: kallithea/kallithea/tests/functional/test_followers.py - annotation
8bd7a637cea0
812 B
text/x-python
template: use Bootstrap compatible navbar markup
Based on work from Andrew Shadura <andrew@shadura.me>.
Further modified by Mads Kiilerich.
Based on work from Andrew Shadura <andrew@shadura.me>.
Further modified by Mads Kiilerich.
8d98924c58b1 d1addaf7a91e d1addaf7a91e 7f2aa3ec2931 d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e 29d0ed59e674 d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e 29d0ed59e674 d1addaf7a91e | from kallithea.tests.base 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_USER_ADMIN_LOGIN)
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_USER_ADMIN_LOGIN)
response.mustcontain("""Started following""")
|