##// END OF EJS Templates
use safe get on copy mode since for git we don't have this implemented
use safe get on copy mode since for git we don't have this implemented

File last commit:

r3797:d7488551 beta
r4013:d9a73bfc default
Show More
test_branches.py
20 lines | 974 B | text/x-python | PythonLexer
renamed project to rhodecode
r547 from rhodecode.tests import *
synced vcs with upstream...
r3797
renamed project to rhodecode
r547 class TestBranchesController(TestController):
synced vcs with upstream...
r3797 def test_index_hg(self):
renamed project to rhodecode
r547 self.log_user()
- refactoring to overcome poor usage of global pylons config...
r1723 response = self.app.get(url(controller='branches',
action='index', repo_name=HG_REPO))
synced vcs with upstream...
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)