##// END OF EJS Templates
Defer Traits import in ipy_traits_completer....
Defer Traits import in ipy_traits_completer. Please note that this extension is for now in 'deathrow', we need to check it and update it to any changes made, so we can bring it back into mainline. Closes https://bugs.launchpad.net/ipython/+bug/416174

File last commit:

r1916:7b7637de
r2559:4d660a0e
Show More
test_fakemodule.py
17 lines | 463 B | text/x-python | PythonLexer
"""Tests for the FakeModule objects.
"""
import nose.tools as nt
from IPython.FakeModule import FakeModule, init_fakemod_dict
# 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)