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

Changelog

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

  * New upstream release

 -- Clint Adams <email address hidden>  Wed, 05 Jul 2017 21:42:22 -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.4.3-1.dsc 2.2 KiB b6fbc8f248019b682885165c2163d07e3afe262ddbabcc2b72bbf980c2951e8a
haskell-hspec-discover_2.4.3.orig.tar.gz 5.8 KiB aa3d75c891dd134020dcb6afe547f15d055e6c304c2cd1a5c723f7602868b44e
haskell-hspec-discover_2.4.3-1.debian.tar.xz 2.6 KiB 86c00ce432dd1d459d230992be10a0b81b9087883bfab9fa9e03095addea9f30

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.