##// END OF EJS Templates
Backport PR #4972: Work around problem in doctest discovery in Python 3.4 with PyQt...
Backport PR #4972: Work around problem in doctest discovery in Python 3.4 with PyQt Closes gh-4892

File last commit:

r11124:9567c77a
r14974:b3f8cffd
Show More
test_fakemodule.py
17 lines | 449 B | text/x-python | PythonLexer
"""Tests for the FakeModule objects.
"""
import nose.tools as nt
from IPython.core.fakemodule import FakeModule
# Make a fakemod and check a few properties
def test_mk_fakemod():
fm = FakeModule()
yield nt.assert_true,fm
yield nt.assert_true,lambda : hasattr(fm,'__file__')
def test_mk_fakemod_fromdict():
"""Test making a FakeModule object with initial data"""
fm = FakeModule(dict(hello=True))
nt.assert_true(fm.hello)