
    &e                     *    d Z ddlZd Zd Zd Zd ZdS )z8Some simple tests for the plugin while running scripts.
    Nc                      dS )zA trivial passing test.N r       @lib/python3.11/site-packages/IPython/testing/plugin/test_refs.pytest_trivialr      s    Dr   c                      dS )zOTest running a trivial script.

    In [13]: run simplevars.py
    x is: 1
    Nr   r   r   r   doctest_runr	            r   c                      dS )zTest that variables defined in scripts get loaded correctly via %run.

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

    In [14]: x
    Out[14]: 1
    Nr   r   r   r   doctest_runvarsr      r
   r   c                      dS )zlTest that variables defined interactively are picked up.
    In [5]: zz=1

    In [6]: zz
    Out[6]: 1
    Nr   r   r   r   doctest_ivarsr   !   r
   r   )__doc__inspectr   r	   r   r   r   r   r   <module>r      s`     	 	 	        r   