Uploaded Test files
This commit is contained in:
parent
f584ad9d97
commit
2e81cb7d99
16627 changed files with 2065359 additions and 102444 deletions
|
@ -0,0 +1 @@
|
|||
pip
|
29
venv/Lib/site-packages/testpath-0.4.4.dist-info/LICENSE
Normal file
29
venv/Lib/site-packages/testpath-0.4.4.dist-info/LICENSE
Normal file
|
@ -0,0 +1,29 @@
|
|||
BSD 3-Clause License
|
||||
|
||||
Copyright (c) 2015, The Jupyter Development Team
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
|
||||
* Neither the name of the copyright holder nor the names of its
|
||||
contributors may be used to endorse or promote products derived from
|
||||
this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
34
venv/Lib/site-packages/testpath-0.4.4.dist-info/METADATA
Normal file
34
venv/Lib/site-packages/testpath-0.4.4.dist-info/METADATA
Normal file
|
@ -0,0 +1,34 @@
|
|||
Metadata-Version: 2.1
|
||||
Name: testpath
|
||||
Version: 0.4.4
|
||||
Summary: Test utilities for code working with files and commands
|
||||
Home-page: https://github.com/jupyter/testpath
|
||||
License: UNKNOWN
|
||||
Author: Jupyter Development Team
|
||||
Author-email: jupyter@googlegroups.com
|
||||
Description-Content-Type: text/x-rst
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: License :: OSI Approved :: BSD License
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Programming Language :: Python :: 2
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Topic :: Software Development :: Testing
|
||||
Requires-Dist: pathlib2; extra == "test" and ( python_version == "2.7")
|
||||
Project-URL: Documentation, https://testpath.readthedocs.io/en/latest/
|
||||
Provides-Extra: test
|
||||
|
||||
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.
|
||||
|
||||
`Documentation on ReadTheDocs <https://testpath.readthedocs.io/en/latest/>`_
|
||||
|
||||
e.g.::
|
||||
|
||||
import testpath
|
||||
testpath.assert_isfile(path)
|
||||
|
||||
with testpath.assert_calls('git', ['add', path]):
|
||||
function_under_test()
|
||||
|
17
venv/Lib/site-packages/testpath-0.4.4.dist-info/RECORD
Normal file
17
venv/Lib/site-packages/testpath-0.4.4.dist-info/RECORD
Normal file
|
@ -0,0 +1,17 @@
|
|||
testpath-0.4.4.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
testpath-0.4.4.dist-info/LICENSE,sha256=lffHNTDRPZ_hTlm4u9LrSQGqt54RnjNs2Tf0lczm_DY,1528
|
||||
testpath-0.4.4.dist-info/METADATA,sha256=QlUwLcY5mXxdiWHffu5IIfdJ1VZ4vMfwKsg-OhZ23CU,1185
|
||||
testpath-0.4.4.dist-info/RECORD,,
|
||||
testpath-0.4.4.dist-info/WHEEL,sha256=2B1pVlOFVTDmfKKpDaKpjTjzhS6mn9JcWodB71sRPSI,97
|
||||
testpath/__init__.py,sha256=eZ1mKoAAwpx0mwVI8MFN-wIDnhYAmVwamRhlkaEZ9CU,220
|
||||
testpath/__pycache__/__init__.cpython-36.pyc,,
|
||||
testpath/__pycache__/asserts.cpython-36.pyc,,
|
||||
testpath/__pycache__/commands.cpython-36.pyc,,
|
||||
testpath/__pycache__/env.cpython-36.pyc,,
|
||||
testpath/__pycache__/tempdir.cpython-36.pyc,,
|
||||
testpath/asserts.py,sha256=4Q4onVfp8qFBKwQYNv5-2RiZ5D0qq-N0j-5wyuVYCn4,6826
|
||||
testpath/cli-32.exe,sha256=dfEuovMNnA2HLa3jRfMPVi5tk4R7alCbpTvuxtCyw0Y,65536
|
||||
testpath/cli-64.exe,sha256=KLABu5pyrnokJCv6skjXZ6GsXeyYHGcqOUT3oHI3Xpo,74752
|
||||
testpath/commands.py,sha256=4KLww4CiDKD8gM2rfJvbyb1Q3ECFpoZPi4oZZFIS0Qo,4873
|
||||
testpath/env.py,sha256=woc2bUIwV908Id01aoojmw9O6fiLaU0hWex6f0WcbAg,2370
|
||||
testpath/tempdir.py,sha256=4qmfd9h0FZ8cN9XonvyvAff5Wjc_Id8-YrQg4JnP4H0,5246
|
5
venv/Lib/site-packages/testpath-0.4.4.dist-info/WHEEL
Normal file
5
venv/Lib/site-packages/testpath-0.4.4.dist-info/WHEEL
Normal file
|
@ -0,0 +1,5 @@
|
|||
Wheel-Version: 1.0
|
||||
Generator: flit 0.1
|
||||
Root-Is-Purelib: true
|
||||
Tag: py2-none-any
|
||||
Tag: py3-none-any
|
Loading…
Add table
Add a link
Reference in a new issue