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

Changelog

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

  * New upstream release

 -- Clint Adams <email address hidden>  Tue, 14 Jun 2022 16:01:07 -0400

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.8.5-1.dsc 2.1 KiB 420a605249f816d5cea7bfaa59249d2ed9cf730ca755c6375bce0618f83d59a7
haskell-hspec-discover_2.8.5.orig.tar.gz 6.7 KiB 04f88dcc1af92f5e55949406bc8f80196b72240629293eba8a77fffa8157360c
haskell-hspec-discover_2.8.5-1.debian.tar.xz 3.0 KiB f509fc5b52ede51d0cdb5a0fad580b2de9d55d84475e4f000a2b6874f2d0730c

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.