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

Changelog

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

  * No-change rebuild for libffi soname change.

 -- Matthias Klose <email address hidden>  Sun, 12 Jan 2020 08:51:07 +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

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-1build3.debian.tar.xz 3.1 KiB 735317e62a99b6df8b4f5cdb6a17d176e271cf573c25eeeabf8cda0083ea05d4
haskell-hspec-discover_2.6.1-1build3.dsc 2.1 KiB c0f3773577abee64a418cc134c19aae628903ac2b11f311bf868f02449d01743

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.