haskell-hspec-discover 2.8.5-1build1 source package in Ubuntu

Changelog

haskell-hspec-discover (2.8.5-1build1) lunar; urgency=medium

  * Rebuild against new GHC ABI.

 -- Gianfranco Costamagna <email address hidden>  Fri, 09 Dec 2022 14:08:38 +0100

Upload details

Uploaded by:
Gianfranco Costamagna
Uploaded to:
Lunar
Original maintainer:
Debian Haskell Group
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe misc
Lunar release universe misc

Downloads

File Size SHA-256 Checksum
haskell-hspec-discover_2.8.5.orig.tar.gz 6.7 KiB 04f88dcc1af92f5e55949406bc8f80196b72240629293eba8a77fffa8157360c
haskell-hspec-discover_2.8.5-1build1.debian.tar.xz 3.1 KiB da262088eb36041f26784bdf8ae657a46d242cd3c6ddc4a145d2821540e0246d
haskell-hspec-discover_2.8.5-1build1.dsc 2.1 KiB e6a96b405a22f245361368e45d1c514f4736101548e1c579fe08543edc900b18

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.