test_branches.py
20 lines
| 974 B
| text/x-python
|
PythonLexer
r547 | from rhodecode.tests import * | |||
r3797 | ||||
r547 | class TestBranchesController(TestController): | |||
r3797 | def test_index_hg(self): | |||
r547 | self.log_user() | |||
r1723 | response = self.app.get(url(controller='branches', | |||
action='index', repo_name=HG_REPO)) | ||||
r3797 | response.mustcontain("""<a href="/%s/files/96507bd11ecc815ebc6270fdf6db110928c09c1e/">default</a>""" % HG_REPO) | |||
# closed branches | ||||
response.mustcontain("""<a href="/%s/changeset/95ca6417ec0de6ac3bd19b336d7b608f27b88711">git [closed]</a><""" % HG_REPO) | ||||
response.mustcontain("""<a href="/%s/changeset/0dd5fd7b37a4eea4dd9b662af63cee743b4ccce2">web [closed]</a>""" % HG_REPO) | ||||
def test_index_git(self): | ||||
self.log_user() | ||||
response = self.app.get(url(controller='branches', | ||||
action='index', repo_name=GIT_REPO)) | ||||
response.mustcontain("""<a href="/%s/files/5f2c6ee195929b0be80749243c18121c9864a3b3/">master</a>""" % GIT_REPO) | ||||