Move the absolute import test files

This commit is contained in:
Dave Halter
2020-01-11 21:59:21 +01:00
parent 095f1295af
commit ba6154c314
4 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
"""
This is a module that imports the *standard library* unittest,
despite there being a local "unittest" module. It specifies that it
wants the stdlib one with the ``absolute_import`` __future__ import.
The twisted equivalent of this module is ``twisted.trial._synctest``.
"""
from __future__ import absolute_import
import unittest
class Assertions(unittest.TestCase):
pass