##// END OF EJS Templates
Backport PR #4880: set profile name from profile_dir...
Backport PR #4880: set profile name from profile_dir in case profile_dir is set directly (e.g. in the notebook) closes #4238

File last commit:

r11124:9567c77a
r15049:0d211ef6
Show More
test_fakemodule.py
17 lines | 449 B | text/x-python | PythonLexer
/ IPython / core / tests / test_fakemodule.py
Fernando Perez
Work again on bug 269966....
r1916 """Tests for the FakeModule objects.
"""
import nose.tools as nt
Thomas Kluyver
Remove unused imports from IPython.core
r11124 from IPython.core.fakemodule import FakeModule
Fernando Perez
Work again on bug 269966....
r1916
# 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)