pyhamcrest 2.0.3-2 source package in Ubuntu

Changelog

pyhamcrest (2.0.3-2) unstable; urgency=medium

  [ Debian Janitor ]
  * Use secure URI in Homepage field.
  * Set upstream metadata fields: Repository-Browse.

 -- Jelmer Vernooij <email address hidden>  Mon, 17 Oct 2022 02:25:50 +0100

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
python
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release main python
Lunar release main python

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pyhamcrest_2.0.3-2.dsc 2.0 KiB 650253bc164d6f9ca1d8c3040fdce08b713617eb9e7f128a8e17037b52424bd7
pyhamcrest_2.0.3.orig.tar.gz 58.0 KiB 7e3738e73be4743b012f697aa4d2aab17cb3320196a95f56bbc09ae68a3b7f06
pyhamcrest_2.0.3-2.debian.tar.xz 4.3 KiB fe282fed5302ad0cf10b4a796a80ea0249f6e434c019a4164e7ea63835e2a11f

Available diffs

No changes file available.

Binary packages built by this source

python3-hamcrest: Hamcrest framework for matcher objects (Python 3)

 PyHamcrest is a framework for writing matcher objects, allowing you to
 declaratively define "match" rules. There are a number of situations where
 matchers are invaluable, such as UI validation, or data filtering, but it is in
 the area of writing flexible tests that matchers are most commonly used. This
 tutorial shows you how to use PyHamcrest for unit testing.
 .
 When writing tests it is sometimes difficult to get the balance right between
 overspecifying the test (and making it brittle to changes), and not specifying
 enough (making the test less valuable since it continues to pass even when the
 thing being tested is broken). Having a tool that allows you to pick out
 precisely the aspect under test and describe the values it should have, to a
 controlled level of precision, helps greatly in writing tests that are
 "just right." Such tests fail when the behavior of the aspect under test
 deviates from the expected behavior, yet continue to pass when minor,
 unrelated changes to the behaviour are made.
 .
 This package provides the Python 3.x modules.