summaryrefslogtreecommitdiff
path: root/tests/functional/d/deprecated/deprecated_methods_py36.py
blob: f416a144c69a284baad211f50d7802fcfe0ce643 (plain)
1
2
3
4
5
6
7
""" Functional tests for method deprecation. """
# pylint: disable=no-value-for-parameter
import unittest
from importlib.machinery import SourceFileLoader, SourcelessFileLoader

SourceFileLoader('unittest', unittest.__file__).load_module() # [deprecated-method]
SourcelessFileLoader('unittest', unittest.__file__).load_module() # [deprecated-method]