blob: d390c8d790900628c553c6fccd148fbd7d9f66bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
""" Functional tests for method deprecation. """
# pylint: disable=missing-docstring, super-init-not-called, not-callable
import base64
import cgi
import inspect
import logging
import nntplib
import platform
import unittest
import xml.etree.ElementTree
class MyTest(unittest.TestCase):
def test(self):
self.assert_(True) # [deprecated-method]
xml.etree.ElementTree.Element('tag').getchildren() # [deprecated-method]
xml.etree.ElementTree.Element('tag').getiterator() # [deprecated-method]
xml.etree.ElementTree.XMLParser('tag', None, None).doctype(None, None, None) # [deprecated-method]
nntplib.NNTP(None).xpath(None) # [deprecated-method]
inspect.getargspec(None) # [deprecated-method]
logging.warn("a") # [deprecated-method]
platform.popen([]) # [deprecated-method]
base64.encodestring("42") # [deprecated-method]
base64.decodestring("42") # [deprecated-method]
cgi.escape("a") # [deprecated-method]
class SuperCrash(unittest.TestCase):
def __init__(self):
# should not crash.
super(SuperCrash, self)()
xml.etree.ElementTree.iterparse(None)
class Tests(unittest.TestCase):
def test_foo(self):
self.assertEquals(2 + 2, 4) # [deprecated-method]
self.assertNotEquals(2 + 2, 4) # [deprecated-method]
self.assertAlmostEquals(2 + 2, 4) # [deprecated-method]
self.assertNotAlmostEquals(2 + 2, 4) # [deprecated-method]
self.assert_("abc" == "2") # [deprecated-method]
self.assertRaisesRegex(ValueError, "exception")
self.assertRegex("something", r".+")
|