/
usr
/
lib
/
python3
/
dist-packages
/
twisted
/
web
/
test
/
/usr/lib/python3/dist-packages/twisted/web/test
mkdir
upload
Name
Size
Mode
Actions
__pycache__/
-
0755
rm
injectionhelpers.py
5593
0644
edit
dl
rm
requesthelper.py
15121
0644
edit
dl
rm
test_agent.py
121042
0644
edit
dl
rm
test_cgi.py
15119
0644
edit
dl
rm
test_client.py
1364
0644
edit
dl
rm
test_distrib.py
18036
0644
edit
dl
rm
test_domhelpers.py
11034
0644
edit
dl
rm
test_error.py
15946
0644
edit
dl
rm
test_flatten.py
22130
0644
edit
dl
rm
test_html.py
1222
0644
edit
dl
rm
test_http.py
155512
0644
edit
dl
rm
test_http2.py
107846
0644
edit
dl
rm
test_httpauth.py
23786
0644
edit
dl
rm
test_http_headers.py
23292
0644
edit
dl
rm
test_newclient.py
109366
0644
edit
dl
rm
test_proxy.py
20046
0644
edit
dl
rm
test_resource.py
9136
0644
edit
dl
rm
test_script.py
3814
0644
edit
dl
rm
test_soap.py
3134
0644
edit
dl
rm
test_stan.py
7252
0644
edit
dl
rm
test_static.py
68197
0644
edit
dl
rm
test_tap.py
11842
0644
edit
dl
rm
test_template.py
28841
0644
edit
dl
rm
test_util.py
15049
0644
edit
dl
rm
test_vhost.py
7736
0644
edit
dl
rm
test_web.py
69145
0644
edit
dl
rm
test_webclient.py
11792
0644
edit
dl
rm
test_web__responses.py
829
0644
edit
dl
rm
test_wsgi.py
76512
0644
edit
dl
rm
test_xml.py
42030
0644
edit
dl
rm
test_xmlrpc.py
30572
0644
edit
dl
rm
_util.py
3174
0644
edit
dl
rm
__init__.py
107
0644
edit
dl
rm
Edit:
/usr/lib/python3/dist-packages/twisted/web/test/test_html.py
(1222B)
# Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. from twisted.trial import unittest from twisted.web import html class WebHtmlTests(unittest.TestCase): """ Unit tests for L{twisted.web.html}. """ def test_deprecation(self): """ Calls to L{twisted.web.html} members emit a deprecation warning. """ def assertDeprecationWarningOf(method): """ Check that a deprecation warning is present. """ warningsShown = self.flushWarnings([self.test_deprecation]) self.assertEqual(len(warningsShown), 1) self.assertIdentical(warningsShown[0]["category"], DeprecationWarning) self.assertEqual( warningsShown[0]["message"], "twisted.web.html.%s was deprecated in Twisted 15.3.0; " "please use twisted.web.template instead" % (method,), ) html.PRE("") assertDeprecationWarningOf("PRE") html.UL([]) assertDeprecationWarningOf("UL") html.linkList([]) assertDeprecationWarningOf("linkList") html.output(lambda: None) assertDeprecationWarningOf("output")
Save
cmd:
run