ó
æNXc           @   sC   d  Z  d d l Z d „  Z d „  Z d „  Z d „  Z d „  Z d S(   s8   Some simple tests for the plugin while running scripts.
iÿÿÿÿNc           C   s   d S(   s   A trivial passing test.N(    (    (    (    sX   /data/av2000/mvv/env_mvv/lib/python2.7/site-packages/IPython/testing/plugin/test_refs.pyt   test_trivial   s    c           C   s   d S(   sO   Test running a trivial script.

    In [13]: run simplevars.py
    x is: 1
    N(    (    (    (    sX   /data/av2000/mvv/env_mvv/lib/python2.7/site-packages/IPython/testing/plugin/test_refs.pyt   doctest_run   s    c           C   s   d S(   s”   Test that variables defined in scripts get loaded correcly via %run.

    In [13]: run simplevars.py
    x is: 1

    In [14]: x
    Out[14]: 1
    N(    (    (    (    sX   /data/av2000/mvv/env_mvv/lib/python2.7/site-packages/IPython/testing/plugin/test_refs.pyt   doctest_runvars   s    c           C   s   d S(   sl   Test that variables defined interactively are picked up.
    In [5]: zz=1

    In [6]: zz
    Out[6]: 1
    N(    (    (    (    sX   /data/av2000/mvv/env_mvv/lib/python2.7/site-packages/IPython/testing/plugin/test_refs.pyt   doctest_ivars!   s    c           C   s   d S(   sz   DocTest reference holding issues when running scripts.

    In [32]: run show_refs.py
    c referrers: [<... 'dict'>]
    N(    (    (    (    sX   /data/av2000/mvv/env_mvv/lib/python2.7/site-packages/IPython/testing/plugin/test_refs.pyt   doctest_refs)   s    (   t   __doc__t   inspectR    R   R   R   R   (    (    (    sX   /data/av2000/mvv/env_mvv/lib/python2.7/site-packages/IPython/testing/plugin/test_refs.pyt   <module>   s   			
	