##// END OF EJS Templates
make "Open new pull request" option lower case like other options are
make "Open new pull request" option lower case like other options are

File last commit:

r1818:cf51bbfb beta
r3188:a51e5da0 beta
Show More
test_branches.py
11 lines | 611 B | text/x-python | PythonLexer
from rhodecode.tests import *
class TestBranchesController(TestController):
def test_index(self):
self.log_user()
response = self.app.get(url(controller='branches',
action='index', repo_name=HG_REPO))
response.mustcontain("""<a href="/%s/files/27cd5cce30c96924232dffcd24178a07ffeb5dfc/">default</a>""" % HG_REPO)
response.mustcontain("""<a href="/%s/files/97e8b885c04894463c51898e14387d80c30ed1ee/">git</a>""" % HG_REPO)
response.mustcontain("""<a href="/%s/files/2e6a2bf9356ca56df08807f4ad86d480da72a8f4/">web</a>""" % HG_REPO)