python-expecttest 0.1.5-1 source package in Ubuntu

Changelog

python-expecttest (0.1.5-1) unstable; urgency=medium

  * Source-only upload to unblock migration.

 -- Mo Zhou <email address hidden>  Sun, 12 Nov 2023 16:14:17 -0500

Upload details

Uploaded by:
Debian Deep Learning Team
Uploaded to:
Sid
Original maintainer:
Debian Deep Learning Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-expecttest_0.1.5-1.dsc 2.1 KiB a5e42bf7a42737f87bbba21485644b1e448fdc5c9066dd3405fdd7af3b8817dd
python-expecttest_0.1.5.orig.tar.gz 13.9 KiB bc27cf12c51ac23775c4d1480a04ae40e168299f6f4ca6612af252b2cac1efdb
python-expecttest_0.1.5-1.debian.tar.xz 2.1 KiB f657f8bfc48572be4de83f024bf8033145f4209f2db944458e5cdca6ec88080e

Available diffs

No changes file available.

Binary packages built by this source

python3-expecttest: Expect tests in Python (also known as "golden" tests)

 This library implements expect tests (also known as "golden" tests). Expect
 tests are a method of writing tests where instead of hard-coding the expected
 output of a test, you run the test to get the output, and the test framework
 automatically populates the expected output. If the output of the test
 changes, you can rerun the test with the environment variable
 EXPECTTEST_ACCEPT=1 to automatically update the expected output.
 .
 Somewhat unusually, this library implements inline expect tests: that is to
 say, the expected output isn't saved to an external file, it is saved directly
 in the Python file (and we modify your Python file when updating the expect
 test.)