##// END OF EJS Templates
Update LICENSE.md to include license information about Codemirror 3.15...
Update LICENSE.md to include license information about Codemirror 3.15 Add information to the LICENSE.md file to include the information provided in the codemirror-3.15/LICENSE file. Also, note that other license and copyright information also appears in .../public/js/mode/ sub-directories.

File last commit:

r3797:d7488551 beta
r4121:8c543e37 rhodecode-2.2.5-gpl
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)