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

Changelog

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

  * New upstream release
  * Remove retired developer, Joachim Breitner, from Uploaders.
  * Declare compliance with Debian policy 4.6.2

 -- Ilias Tsitsimpis <email address hidden>  Sun, 27 Aug 2023 20:23:34 +0300

Upload details

Uploaded by:
Debian Haskell Group
Uploaded to:
Sid
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.10.10-1.dsc 2.1 KiB 7872ebc095a314bf091256bc9ed5e83a422dd6bec9d2a81e5a18182bac63e33c
haskell-hspec-discover_2.10.10.orig.tar.gz 6.7 KiB a809388c0ea90b215e582f11e19e030aefa279d63f6ba1c5cbfd714403152f32
haskell-hspec-discover_2.10.10-1.debian.tar.xz 3.0 KiB 7c4e39973014a126f070cccc6bc4188619f4ee0ee3c5ebadcbc24fdadf23d247

No changes file available.

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.