/opt/imh-python/lib/python3.9/site-packages/IPython/testing/plugin
NameSizeModeActions
__pycache__/-0755rm
dtexample.py29210644editdlrm
ipdoctest.py118810644editdlrm
pytest_ipdoctest.py296890644editdlrm
README.txt10430644editdlrm
setup.py5390644editdlrm
simple.py7270644editdlrm
simplevars.py240644editdlrm
test_combo.txt9230644editdlrm
test_example.txt7300644editdlrm
test_exampleip.txt8140644editdlrm
test_ipdoctest.py19070644editdlrm
test_refs.py7150644editdlrm
__init__.py00644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/IPython/testing/plugin/test_example.txt (730B)
===================================== Tests in example form - pure python ===================================== This file contains doctest examples embedded as code blocks, using normal Python prompts. See the accompanying file for similar examples using IPython prompts (you can't mix both types within one file). The following will be run as a test:: >>> 1+1 2 >>> print ("hello") hello More than one example works:: >>> s="Hello World" >>> s.upper() 'HELLO WORLD' but you should note that the *entire* test file is considered to be a single test. Individual code blocks that fail are printed separately as ``example failures``, but the whole file is still counted and reported as one test.