##// END OF EJS Templates
Merge pull request #850 from fperez/codemirror...
Merge pull request #850 from fperez/codemirror Update codemirror to 2.15 and make the code internally more version-agnostic. Added our own README file with information about what changes we carry to upstream CodeMirror and what version we currently use.

File last commit:

r2020:f3a106b5
r4987:e5a1dffc merge
Show More
test_fakemodule.py
17 lines | 468 B | text/x-python | PythonLexer
"""Tests for the FakeModule objects.
"""
import nose.tools as nt
from IPython.core.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)