loongson/pypi/: testpath-0.5.0 metadata and description
Test utilities for code working with files and commands
author_email | Jupyter Development Team <jupyter@googlegroups.com> |
classifiers |
|
description_content_type | text/x-rst |
project_urls |
|
provides_extras | test |
requires_dist |
|
requires_python | >= 3.5 |
Because this project isn't in the mirror_whitelist
,
no releases from root/pypi are included.
File | Tox results | History |
---|---|---|
testpath-0.5.0-py3-none-any.whl
|
|
Testpath is a collection of utilities for Python code working with files and commands.
It contains functions to check things on the filesystem, and tools for mocking system commands and recording calls to those.
e.g.:
import testpath testpath.assert_isfile(path) with testpath.assert_calls('git', ['add', path]): function_under_test()