Please enable JavaScript to use RhodeCode Enterprise
##// END OF EJS Templates
marcink
- Thu, 31 Jan 2013 22:23:56
Show More
rhodecode/tests/functional/test_forks.py
0
+2
-2
@@
-66,7
+66,7
b' class TestForksController(TestController'
66
66
repo_name = repo_name ))
67
67
68
68
response . mustcontain (
69
"""<a href="/%s/summary">%s</a>""" % ( fork_name , fork_name )
69
"""<a href="/%s">%s</a>""" % ( fork_name , fork_name )
70
70
)
71
71
72
72
#remove this fork
@@
-95,7
+95,7
b' class TestForksController(TestController'
95
95
repo_name = repo_name ))
96
96
97
97
response . mustcontain (
98
"""<a href="/%s/summary">%s</a>""" % ( fork_name , fork_name )
98
"""<a href="/%s">%s</a>""" % ( fork_name , fork_name )
99
99
)
100
100
101
101
#remove this fork
rhodecode/tests/functional/test_home.py
0
+1
-1
@@
-15,7
+15,7
b' class TestHomeController(TestController)'
15
15
response = self . app . get ( url ( controller = 'home' , action = 'index' ))
16
16
#if global permission is set
17
17
response . mustcontain ( 'Add repository' )
18
response . mustcontain ( 'href="/ %s /summary"' % HG_REPO )
18
response . mustcontain ( 'href="/ %s "' % HG_REPO )
19
19
20
20
response . mustcontain ( """<img class="icon" title="Mercurial repository" """
21
21
"""alt="Mercurial repository" src="/images/icons/hg"""
rhodecode/tests/functional/test_search.py
0
+1
-1
@@
-56,7
+56,7
b' class TestSearchController(TestControlle'
56
56
def test_search_commit_message_hg_repo ( self ):
57
57
self . log_user ()
58
58
response = self . app . get ( url ( controller = 'search' , action = 'index' ,
59
search_repo= HG_REPO ),
59
repo_name = HG_REPO ),
60
60
{ 'q' : 'bother to ask where to fetch repo during tests' ,
61
61
'type' : 'commit' })
62
62
rhodecode/tests/functional/test_summary.py
0
+4
-4
@@
-44,8
+44,8
b' class TestSummaryController(TestControll'
44
44
)
45
45
46
46
# clone url...
47
response . mustcontain ( """<input style="width:80%%;margin-left:105px" type="text" id="clone_url" readonly="readonly" value="http://test_admin@localhost:80/%s "/>""" % HG_REPO )
48
response . mustcontain ( """<input style="display:none;width:80%%;margin-left:105px" type="text" id="clone_url_id" readonly="readonly" value="http://test_admin@localhost:80/_%s "/>""" % ID )
47
response . mustcontain ( ''' id="clone_url" readonly="readonly" value="http://test_admin@localhost:80/%s "''' % HG_REPO )
48
response . mustcontain ( ''' id="clone_url_id" readonly="readonly" value="http://test_admin@localhost:80/_%s "''' % ID )
49
49
50
50
def test_index_git ( self ):
51
51
self . log_user ()
@@
-67,8
+67,8
b' class TestSummaryController(TestControll'
67
67
)
68
68
69
69
# clone url...
70
response . mustcontain ( """<input style="width:80%%;margin-left:105px" type="text" id="clone_url" readonly="readonly" value="http://test_admin@localhost:80/%s "/>""" % GIT_REPO )
71
response . mustcontain ( """<input style="display:none;width:80%%;margin-left:105px" type="text" id="clone_url_id" readonly="readonly" value="http://test_admin@localhost:80/_%s "/>""" % ID )
70
response . mustcontain ( ''' id="clone_url" readonly="readonly" value="http://test_admin@localhost:80/%s "''' % GIT_REPO )
71
response . mustcontain ( ''' id="clone_url_id" readonly="readonly" value="http://test_admin@localhost:80/_%s "''' % ID )
72
72
73
73
def test_index_by_id_hg ( self ):
74
74
self . log_user ()
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
g 0-9
Goto bookmarked items from 0-9
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository access permissions settings
t s
Toggle sidebar on some pages