##// END OF EJS Templates
tests: fix style issue of importing hgweb in embedded code fragments...
FUJIWARA Katsunori -
r40239:f80f7a67 default
parent child Browse files
Show More
@@ -18,11 +18,8 b' should be used from d74fc8dec2b4 onward '
18 18 > from __future__ import absolute_import
19 19 > import os
20 20 > import sys
21 > from mercurial.hgweb import (
21 > from mercurial import (
22 22 > hgweb,
23 > hgwebdir,
24 > )
25 > from mercurial import (
26 23 > util,
27 24 > )
28 25 > stringio = util.stringio
@@ -72,11 +69,11 b' should be used from d74fc8dec2b4 onward '
72 69 >
73 70 > output = stringio()
74 71 > env['QUERY_STRING'] = 'style=atom'
75 > process(hgweb(b'.', name=b'repo'))
72 > process(hgweb.hgweb(b'.', name=b'repo'))
76 73 >
77 74 > output = stringio()
78 75 > env['QUERY_STRING'] = 'style=raw'
79 > process(hgwebdir({b'repo': b'.'}))
76 > process(hgweb.hgwebdir({b'repo': b'.'}))
80 77 > EOF
81 78 $ "$PYTHON" request.py
82 79 ---- STATUS
@@ -18,12 +18,9 b' should be used from d74fc8dec2b4 onward '
18 18 > from __future__ import absolute_import
19 19 > import os
20 20 > import sys
21 > from mercurial.hgweb import (
22 > hgweb,
23 > hgwebdir,
24 > )
25 21 > from mercurial import (
26 22 > encoding,
23 > hgweb,
27 24 > util,
28 25 > )
29 26 > stringio = util.stringio
@@ -65,22 +62,22 b' should be used from d74fc8dec2b4 onward '
65 62 > output = stringio()
66 63 > env['PATH_INFO'] = '/'
67 64 > env['QUERY_STRING'] = 'style=atom'
68 > process(hgweb(b'.', name = b'repo'))
65 > process(hgweb.hgweb(b'.', name = b'repo'))
69 66 >
70 67 > output = stringio()
71 68 > env['PATH_INFO'] = '/file/tip/'
72 69 > env['QUERY_STRING'] = 'style=raw'
73 > process(hgweb(b'.', name = b'repo'))
70 > process(hgweb.hgweb(b'.', name = b'repo'))
74 71 >
75 72 > output = stringio()
76 73 > env['PATH_INFO'] = '/'
77 74 > env['QUERY_STRING'] = 'style=raw'
78 > process(hgwebdir({b'repo': b'.'}))
75 > process(hgweb.hgwebdir({b'repo': b'.'}))
79 76 >
80 77 > output = stringio()
81 78 > env['PATH_INFO'] = '/repo/file/tip/'
82 79 > env['QUERY_STRING'] = 'style=raw'
83 > process(hgwebdir({b'repo': b'.'}))
80 > process(hgweb.hgwebdir({b'repo': b'.'}))
84 81 > EOF
85 82 $ "$PYTHON" request.py
86 83 ---- STATUS
@@ -19,9 +19,7 b' by the WSGI standard and strictly implem'
19 19 > util,
20 20 > )
21 21 > ui = uimod.ui
22 > from mercurial.hgweb.hgweb_mod import (
23 > hgweb,
24 > )
22 > from mercurial.hgweb import hgweb_mod
25 23 > stringio = util.stringio
26 24 >
27 25 > class FileLike(object):
@@ -67,7 +65,7 b' by the WSGI standard and strictly implem'
67 65 > 'SERVER_PROTOCOL': 'HTTP/1.0'
68 66 > }
69 67 >
70 > i = hgweb(b'.')
68 > i = hgweb_mod.hgweb(b'.')
71 69 > for c in i(env, startrsp):
72 70 > pass
73 71 > sys.stdout.flush()
General Comments 0
You need to be logged in to leave comments. Login now