def getfile(object):
"""Work out which source or compiled file an object was defined in."""
if ismodule(object):
- if hasattr(object, '__file__'):
+ if getattr(object, '__file__', None):
return object.__file__
raise TypeError('{!r} is a built-in module'.format(object))
if isclass(object):
if hasattr(object, '__module__'):
object = sys.modules.get(object.__module__)
- if hasattr(object, '__file__'):
+ if getattr(object, '__file__', None):
return object.__file__
raise TypeError('{!r} is a built-in class'.format(object))
if ismethod(object):
import functools
import os
import sys
+import importlib
+import unittest
# NOTE: There are some additional tests relating to interaction with
>>> tests = finder.find(sample_func)
>>> print(tests) # doctest: +ELLIPSIS
- [<DocTest sample_func from ...:19 (1 example)>]
+ [<DocTest sample_func from ...:21 (1 example)>]
The exact name depends on how test_doctest was invoked, so allow for
leading path components.
and 'int' is a type.
"""
+
+class TestDocTestFinder(unittest.TestCase):
+
+ def test_empty_namespace_package(self):
+ pkg_name = 'doctest_empty_pkg'
+ os.mkdir(pkg_name)
+ mod = importlib.import_module(pkg_name)
+ assert doctest.DocTestFinder().find(mod) == []
+ os.rmdir(pkg_name)
+
+
def test_DocTestParser(): r"""
Unit tests for the `DocTestParser` class.
from test import test_doctest
support.run_doctest(test_doctest, verbosity=True)
+ # Run unittests
+ support.run_unittest(__name__)
+
+
def test_coverage(coverdir):
trace = support.import_module('trace')
tracer = trace.Trace(ignoredirs=[sys.base_prefix, sys.base_exec_prefix,],