annotate rhodecode/tests/functional/test_changelog.py @ 3645:aef5f5ce5ead beta

use fixtures for forking
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 31 Mar 2013 21:31:36 +0200
parents 58dcef7eef03
children 3563bb7b4b82 6302a1423a4e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
547
1e757ac98988 renamed project to rhodecode
Marcin Kuzminski <marcin@python-works.com>
parents: 473
diff changeset
1 from rhodecode.tests import *
93
aec4c0071cb3 added empty controllers for branches tags files graph, routing and test for them
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
2
1895
b7adbd5456c2 test fixes for latest changes
Marcin Kuzminski <marcin@python-works.com>
parents: 1707
diff changeset
3
93
aec4c0071cb3 added empty controllers for branches tags files graph, routing and test for them
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
4 class TestChangelogController(TestController):
aec4c0071cb3 added empty controllers for branches tags files graph, routing and test for them
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
5
688
8acbfa837180 Tests rewrite for 1.2 added some globals configs to make tests easier.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
6 def test_index_hg(self):
473
6b934c9607e7 Improved testing scenarios. Made test env creator
Marcin Kuzminski <marcin@python-works.com>
parents: 459
diff changeset
7 self.log_user()
1436
88d13c1c6a55 removed users_group controller in replace for model methods,
Marcin Kuzminski <marcin@python-works.com>
parents: 1021
diff changeset
8 response = self.app.get(url(controller='changelog', action='index',
88d13c1c6a55 removed users_group controller in replace for model methods,
Marcin Kuzminski <marcin@python-works.com>
parents: 1021
diff changeset
9 repo_name=HG_REPO))
688
8acbfa837180 Tests rewrite for 1.2 added some globals configs to make tests easier.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
10
3550
7abbb77b02d0 Repo size - show just the size without duplicating text
Marcin Kuzminski <marcin@python-works.com>
parents: 2745
diff changeset
11 response.mustcontain('''id="chg_20" class="container tablerow1"''')
1895
b7adbd5456c2 test fixes for latest changes
Marcin Kuzminski <marcin@python-works.com>
parents: 1707
diff changeset
12 response.mustcontain(
2515
623e1d68a2e0 fixed few test failures
Marcin Kuzminski <marcin@python-works.com>
parents: 1942
diff changeset
13 """<input class="changeset_range" """
623e1d68a2e0 fixed few test failures
Marcin Kuzminski <marcin@python-works.com>
parents: 1942
diff changeset
14 """id="5e204e7583b9c8e7b93a020bd036564b1e731dae" """
623e1d68a2e0 fixed few test failures
Marcin Kuzminski <marcin@python-works.com>
parents: 1942
diff changeset
15 """name="5e204e7583b9c8e7b93a020bd036564b1e731dae" """
623e1d68a2e0 fixed few test failures
Marcin Kuzminski <marcin@python-works.com>
parents: 1942
diff changeset
16 """type="checkbox" value="1" />"""
1895
b7adbd5456c2 test fixes for latest changes
Marcin Kuzminski <marcin@python-works.com>
parents: 1707
diff changeset
17 )
3557
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
18
1895
b7adbd5456c2 test fixes for latest changes
Marcin Kuzminski <marcin@python-works.com>
parents: 1707
diff changeset
19 response.mustcontain(
3557
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
20 """<span class="changeset_hash">r154:5e204e7583b9</span>"""
1895
b7adbd5456c2 test fixes for latest changes
Marcin Kuzminski <marcin@python-works.com>
parents: 1707
diff changeset
21 )
1707
54fda6ce9e98 fixes timezone issues with tests
Marcin Kuzminski <marcin@python-works.com>
parents: 1548
diff changeset
22
1895
b7adbd5456c2 test fixes for latest changes
Marcin Kuzminski <marcin@python-works.com>
parents: 1707
diff changeset
23 response.mustcontain("""Small update at simplevcs app""")
1436
88d13c1c6a55 removed users_group controller in replace for model methods,
Marcin Kuzminski <marcin@python-works.com>
parents: 1021
diff changeset
24
3550
7abbb77b02d0 Repo size - show just the size without duplicating text
Marcin Kuzminski <marcin@python-works.com>
parents: 2745
diff changeset
25 # response.mustcontain(
7abbb77b02d0 Repo size - show just the size without duplicating text
Marcin Kuzminski <marcin@python-works.com>
parents: 2745
diff changeset
26 # """<div id="changed_total_5e204e7583b9c8e7b93a020bd036564b1e731dae" """
7abbb77b02d0 Repo size - show just the size without duplicating text
Marcin Kuzminski <marcin@python-works.com>
parents: 2745
diff changeset
27 # """style="float:right;" class="changed_total tooltip" """
7abbb77b02d0 Repo size - show just the size without duplicating text
Marcin Kuzminski <marcin@python-works.com>
parents: 2745
diff changeset
28 # """title="Affected number of files, click to show """
7abbb77b02d0 Repo size - show just the size without duplicating text
Marcin Kuzminski <marcin@python-works.com>
parents: 2745
diff changeset
29 # """more details">3</div>"""
7abbb77b02d0 Repo size - show just the size without duplicating text
Marcin Kuzminski <marcin@python-works.com>
parents: 2745
diff changeset
30 # )
688
8acbfa837180 Tests rewrite for 1.2 added some globals configs to make tests easier.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
31
3557
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
32 def test_index_pagination_hg(self):
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
33 self.log_user()
567
80dc0a23edf7 fixed whoosh failure on new repository
Marcin Kuzminski <marcin@python-works.com>
parents: 547
diff changeset
34 #pagination
3557
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
35 self.app.get(url(controller='changelog', action='index',
2515
623e1d68a2e0 fixed few test failures
Marcin Kuzminski <marcin@python-works.com>
parents: 1942
diff changeset
36 repo_name=HG_REPO), {'page': 1})
3557
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
37 self.app.get(url(controller='changelog', action='index',
2515
623e1d68a2e0 fixed few test failures
Marcin Kuzminski <marcin@python-works.com>
parents: 1942
diff changeset
38 repo_name=HG_REPO), {'page': 2})
3557
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
39 self.app.get(url(controller='changelog', action='index',
2515
623e1d68a2e0 fixed few test failures
Marcin Kuzminski <marcin@python-works.com>
parents: 1942
diff changeset
40 repo_name=HG_REPO), {'page': 3})
3557
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
41 self.app.get(url(controller='changelog', action='index',
2515
623e1d68a2e0 fixed few test failures
Marcin Kuzminski <marcin@python-works.com>
parents: 1942
diff changeset
42 repo_name=HG_REPO), {'page': 4})
3557
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
43 self.app.get(url(controller='changelog', action='index',
2515
623e1d68a2e0 fixed few test failures
Marcin Kuzminski <marcin@python-works.com>
parents: 1942
diff changeset
44 repo_name=HG_REPO), {'page': 5})
1436
88d13c1c6a55 removed users_group controller in replace for model methods,
Marcin Kuzminski <marcin@python-works.com>
parents: 1021
diff changeset
45 response = self.app.get(url(controller='changelog', action='index',
2515
623e1d68a2e0 fixed few test failures
Marcin Kuzminski <marcin@python-works.com>
parents: 1942
diff changeset
46 repo_name=HG_REPO), {'page': 6})
688
8acbfa837180 Tests rewrite for 1.2 added some globals configs to make tests easier.
Marcin Kuzminski <marcin@python-works.com>
parents: 567
diff changeset
47
1895
b7adbd5456c2 test fixes for latest changes
Marcin Kuzminski <marcin@python-works.com>
parents: 1707
diff changeset
48 # Test response after pagination...
b7adbd5456c2 test fixes for latest changes
Marcin Kuzminski <marcin@python-works.com>
parents: 1707
diff changeset
49 response.mustcontain(
2515
623e1d68a2e0 fixed few test failures
Marcin Kuzminski <marcin@python-works.com>
parents: 1942
diff changeset
50 """<input class="changeset_range" """
623e1d68a2e0 fixed few test failures
Marcin Kuzminski <marcin@python-works.com>
parents: 1942
diff changeset
51 """id="46ad32a4f974e45472a898c6b0acb600320579b1" """
623e1d68a2e0 fixed few test failures
Marcin Kuzminski <marcin@python-works.com>
parents: 1942
diff changeset
52 """name="46ad32a4f974e45472a898c6b0acb600320579b1" """
623e1d68a2e0 fixed few test failures
Marcin Kuzminski <marcin@python-works.com>
parents: 1942
diff changeset
53 """type="checkbox" value="1" />"""
1895
b7adbd5456c2 test fixes for latest changes
Marcin Kuzminski <marcin@python-works.com>
parents: 1707
diff changeset
54 )
3557
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
55
1895
b7adbd5456c2 test fixes for latest changes
Marcin Kuzminski <marcin@python-works.com>
parents: 1707
diff changeset
56 response.mustcontain(
3557
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
57 """<span class="changeset_hash">r64:46ad32a4f974</span>"""
1895
b7adbd5456c2 test fixes for latest changes
Marcin Kuzminski <marcin@python-works.com>
parents: 1707
diff changeset
58 )
1021
0ea8eca2d63e fixed tests
Marcin Kuzminski <marcin@python-works.com>
parents: 904
diff changeset
59
3550
7abbb77b02d0 Repo size - show just the size without duplicating text
Marcin Kuzminski <marcin@python-works.com>
parents: 2745
diff changeset
60 # response.mustcontain(
7abbb77b02d0 Repo size - show just the size without duplicating text
Marcin Kuzminski <marcin@python-works.com>
parents: 2745
diff changeset
61 # """<div id="changed_total_46ad32a4f974e45472a898c6b0acb600320579b1" """
7abbb77b02d0 Repo size - show just the size without duplicating text
Marcin Kuzminski <marcin@python-works.com>
parents: 2745
diff changeset
62 # """style="float:right;" class="changed_total tooltip" """
7abbb77b02d0 Repo size - show just the size without duplicating text
Marcin Kuzminski <marcin@python-works.com>
parents: 2745
diff changeset
63 # """title="Affected number of files, click to show """
7abbb77b02d0 Repo size - show just the size without duplicating text
Marcin Kuzminski <marcin@python-works.com>
parents: 2745
diff changeset
64 # """more details">21</div>"""
7abbb77b02d0 Repo size - show just the size without duplicating text
Marcin Kuzminski <marcin@python-works.com>
parents: 2745
diff changeset
65 # )
7abbb77b02d0 Repo size - show just the size without duplicating text
Marcin Kuzminski <marcin@python-works.com>
parents: 2745
diff changeset
66 #
7abbb77b02d0 Repo size - show just the size without duplicating text
Marcin Kuzminski <marcin@python-works.com>
parents: 2745
diff changeset
67 # response.mustcontain(
7abbb77b02d0 Repo size - show just the size without duplicating text
Marcin Kuzminski <marcin@python-works.com>
parents: 2745
diff changeset
68 # """<a href="/%s/changeset/"""
7abbb77b02d0 Repo size - show just the size without duplicating text
Marcin Kuzminski <marcin@python-works.com>
parents: 2745
diff changeset
69 # """46ad32a4f974e45472a898c6b0acb600320579b1" """
7abbb77b02d0 Repo size - show just the size without duplicating text
Marcin Kuzminski <marcin@python-works.com>
parents: 2745
diff changeset
70 # """title="Merge with 2e6a2bf9356ca56df08807f4ad86d480da72a8f4">"""
7abbb77b02d0 Repo size - show just the size without duplicating text
Marcin Kuzminski <marcin@python-works.com>
parents: 2745
diff changeset
71 # """46ad32a4f974</a>""" % HG_REPO
7abbb77b02d0 Repo size - show just the size without duplicating text
Marcin Kuzminski <marcin@python-works.com>
parents: 2745
diff changeset
72 # )
3557
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
73
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
74 def test_index_git(self):
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
75 self.log_user()
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
76 response = self.app.get(url(controller='changelog', action='index',
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
77 repo_name=GIT_REPO))
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
78
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
79 response.mustcontain('''id="chg_20" class="container tablerow1"''')
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
80 response.mustcontain(
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
81 """<input class="changeset_range" """
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
82 """id="95f9a91d775b0084b2368ae7779e44931c849c0e" """
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
83 """name="95f9a91d775b0084b2368ae7779e44931c849c0e" """
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
84 """type="checkbox" value="1" />"""
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
85 )
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
86
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
87 response.mustcontain(
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
88 """<span class="changeset_hash">r613:95f9a91d775b</span>"""
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
89 )
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
90
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
91 response.mustcontain("""fixing stupid typo in context for mercurial""")
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
92
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
93 # response.mustcontain(
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
94 # """<div id="changed_total_5e204e7583b9c8e7b93a020bd036564b1e731dae" """
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
95 # """style="float:right;" class="changed_total tooltip" """
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
96 # """title="Affected number of files, click to show """
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
97 # """more details">3</div>"""
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
98 # )
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
99
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
100 def test_index_pagination_git(self):
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
101 self.log_user()
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
102 #pagination
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
103 self.app.get(url(controller='changelog', action='index',
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
104 repo_name=GIT_REPO), {'page': 1})
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
105 self.app.get(url(controller='changelog', action='index',
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
106 repo_name=GIT_REPO), {'page': 2})
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
107 self.app.get(url(controller='changelog', action='index',
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
108 repo_name=GIT_REPO), {'page': 3})
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
109 self.app.get(url(controller='changelog', action='index',
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
110 repo_name=GIT_REPO), {'page': 4})
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
111 self.app.get(url(controller='changelog', action='index',
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
112 repo_name=GIT_REPO), {'page': 5})
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
113 response = self.app.get(url(controller='changelog', action='index',
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
114 repo_name=GIT_REPO), {'page': 6})
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
115
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
116 # Test response after pagination...
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
117 response.mustcontain(
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
118 """<input class="changeset_range" """
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
119 """id="636ed213f2f11ef91071b9c24f2d5e6bd01a6ed5" """
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
120 """name="636ed213f2f11ef91071b9c24f2d5e6bd01a6ed5" """
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
121 """type="checkbox" value="1" />"""
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
122 )
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
123
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
124 response.mustcontain(
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
125 """<span class="changeset_hash">r515:636ed213f2f1</span>"""
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3550
diff changeset
126 )