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

Changelog

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

  * New upstream release

 -- Sean Whitton <email address hidden>  Sun, 03 Sep 2017 13:50:08 -0700

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
Bionic release universe misc

Downloads

File Size SHA-256 Checksum
haskell-hspec-discover_2.4.4-1.dsc 2.1 KiB c52ca0bc8532e01ddb6723c176a2fde725526b30772cc1794192265d2565d174
haskell-hspec-discover_2.4.4-1.debian.tar.xz 2.7 KiB 439e0a3d326ddb09a994610ca7d62024b1c82f79a9c54937f113394a3817c524
haskell-hspec-discover_2.4.4.orig.tar.gz 5.8 KiB 76423bc72f3ed0a80ccefb26fbf3fb16c3d74a69d69b4ce0bc88db54984d5d47

Available diffs

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.