haskell-hspec-discover 2.1.10-2 source package in Ubuntu

Changelog

haskell-hspec-discover (2.1.10-2) unstable; urgency=medium

  * Switch Vcs-Git/Vcs-Browser headers to new location.

 -- Clint Adams <email address hidden>  Thu, 03 Dec 2015 14:54:36 -0500

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.1.10-2.dsc 2.2 KiB 58fdad2dfb7644fec680b2155ea945623270b1518e74910cacf8e89be9de6db0
haskell-hspec-discover_2.1.10-2.debian.tar.xz 2.4 KiB 9599fd1ceb85d9fd2fd1dd4db6a40c169b99e3bec7138627be09a5b1405601da
haskell-hspec-discover_2.1.10.orig.tar.gz 5.5 KiB efb14e44b9beef570d55c2db4904002bf61e7744cd00a3a5fc8c236b8f071a0b

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.