##// END OF EJS Templates
added base for repo creation forms, both templates will share the same form.
added base for repo creation forms, both templates will share the same form.

File last commit:

r874:4bace4aa beta
r1111:4b62d2fe beta
Show More
test_tags.py
13 lines | 1003 B | text/x-python | PythonLexer
renamed project to rhodecode
r547 from rhodecode.tests import *
class TestTagsController(TestController):
def test_index(self):
self.log_user()
Tests rewrite for 1.2 added some globals configs to make tests easier....
r688 response = self.app.get(url(controller='tags', action='index', repo_name=HG_REPO))
fixed tags tests
r874 assert """<a href="/%s/changeset/27cd5cce30c96924232dffcd24178a07ffeb5dfc">tip</a>""" % HG_REPO in response.body, 'wrong info about tip tag'
assert """<a href="/%s/changeset/fd4bdb5e9b2a29b4393a4ac6caef48c17ee1a200">0.1.4</a>""" % HG_REPO in response.body, 'wrong info about 0.1.4 tag'
assert """<a href="/%s/changeset/17544fbfcd33ffb439e2b728b5d526b1ef30bfcf">0.1.3</a>""" % HG_REPO in response.body, 'wrong info about 0.1.3 tag'
assert """<a href="/%s/changeset/a7e60bff65d57ac3a1a1ce3b12a70f8a9e8a7720">0.1.2</a>""" % HG_REPO in response.body, 'wrong info about 0.1.2 tag'
assert """<a href="/%s/changeset/eb3a60fc964309c1a318b8dfe26aa2d1586c85ae">0.1.1</a>""" % HG_REPO in response.body, 'wrong info about 0.1.1 tag'
renamed project to rhodecode
r547 # Test response...