##// END OF EJS Templates
Merge pull request #2002 from bfroehle/lsmagic_docs...
Merge pull request #2002 from bfroehle/lsmagic_docs Refactor %magic into using a new lsmagic_docs method. Added a `lsmagic_docs` method which returns a dictionary of magic function docstrings. It optionally takes parameters `brief` (list only first line of the docstring) and `missing` (to use in lieu of an empty docstring).

File last commit:

r7253:4b8de020
r7654:edaad4c7 merge
Show More
nose_assert_methods.py
17 lines | 516 B | text/x-python | PythonLexer
"""Add some assert methods to nose.tools. These were added in Python 2.7/3.1, so
once we stop testing on Python 2.6, this file can be removed.
"""
import nose.tools as nt
def assert_in(item, collection):
assert item in collection, '%r not in %r' % (item, collection)
if not hasattr(nt, 'assert_in'):
nt.assert_in = assert_in
def assert_not_in(item, collection):
assert item not in collection, '%r in %r' % (item, collection)
if not hasattr(nt, 'assert_not_in'):
nt.assert_not_in = assert_not_in