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

Changelog

haskell-hspec-discover (2.10.10-1build1) noble; urgency=medium

  * Rebuild against new GHC ABI.

 -- Gianfranco Costamagna <email address hidden>  Sat, 11 Nov 2023 08:48:32 +0100

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Noble release universe misc

Downloads

File Size SHA-256 Checksum
haskell-hspec-discover_2.10.10.orig.tar.gz 6.7 KiB a809388c0ea90b215e582f11e19e030aefa279d63f6ba1c5cbfd714403152f32
haskell-hspec-discover_2.10.10-1build1.debian.tar.xz 3.1 KiB 4a40660bc80892a1491d80077ccbb4b655437b0789ab305e2dc4198a772b7d47
haskell-hspec-discover_2.10.10-1build1.dsc 2.1 KiB 98abb125c5f35c1bea044a82d919fb3366fa5ec38c8535ed20b82fbcbee7c1b6

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.