haskell-hspec-discover 2.6.1-1build4 source package in Ubuntu

Changelog

haskell-hspec-discover (2.6.1-1build4) focal; urgency=medium

  * No-change rebuild with fixed binutils on arm64.

 -- Matthias Klose <email address hidden>  Sat, 08 Feb 2020 11:03:34 +0000

Upload details

Uploaded by:
Matthias Klose
Uploaded to:
Focal
Original maintainer:
Debian Haskell Group
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Focal release universe misc

Downloads

File Size SHA-256 Checksum
haskell-hspec-discover_2.6.1.orig.tar.gz 6.6 KiB 9d569a9587d2034272d287442855490a06266192eba1da871cae7d971b922fa1
haskell-hspec-discover_2.6.1-1build4.debian.tar.xz 3.1 KiB aa453b028f2ee0cee8461bac6b23e788ca410b2f0270a5ab9f28294aea9cca40
haskell-hspec-discover_2.6.1-1build4.dsc 2.1 KiB 65ed8c7264be7433e12681c2b138df1064716810955b2b2e6e2c35fe9cda676f

Available diffs

View changes file

Binary packages built by this source

hspec-discover: Automatically discover and run Hspec tests

 It is a useful convention to have one spec file for each source file. That way
 it is straightforward to find the corresponding spec for a given piece of
 code. But it requires error prone, and neither challenging nor interesting
 boiler plate code. So it should be automated. Hspec provides a solution for
 that. It makes creative use of GHC's support for custom preprocessors. The
 developer only has to create a test driver that contains a single line.
 .
 A complete example is at https://github.com/hspec/hspec-example.