##// END OF EJS Templates
mark all read button for notifications
mark all read button for notifications

File last commit:

r1788:ef061358 beta
r1791:2aee0dc1 beta
Show More
test_branches.py
17 lines | 617 B | text/x-python | PythonLexer
renamed project to rhodecode
r547 from rhodecode.tests import *
class TestBranchesController(TestController):
def test_index(self):
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))
test fixes
r1788 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)
Tests rewrite for 1.2 added some globals configs to make tests easier....
r688