pyhamcrest 1.9.0-3 source package in Ubuntu

Changelog

pyhamcrest (1.9.0-3) unstable; urgency=medium

  * Drop python2 support; Closes: #937456, #952131

 -- Sandro Tosi <email address hidden>  Wed, 01 Apr 2020 23:29:39 -0400

Upload details

Uploaded by:
David Villa Alises
Uploaded to:
Sid
Original maintainer:
David Villa Alises
Architectures:
all
Section:
python
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Focal release main python

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pyhamcrest_1.9.0-3.dsc 2.1 KiB 6437235b7096de7f98c19180115703c7a4821de10ef6549224addaf75a3a5835
pyhamcrest_1.9.0.orig.tar.gz 56.3 KiB 9e672cdbe2dfd0890227c92f7c809736f9302a0bb748bbf78ba71fc7a15412d3
pyhamcrest_1.9.0-3.debian.tar.xz 5.5 KiB 9c467de864636fe70fd2aa5102b0ee69cb200058d4824a9f09b0a76e3e3ebe6b

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.