packages feed

test-framework-skip-1.0: test-framework-skip.cabal

Name:          test-framework-skip
Version:       1.0
Cabal-Version: >= 1.8
Category:      Testing
Synopsis:      Functions for conveniently marking some of the tests in a suite as being skipped.
Description:   When tracking down a problem it can often be useful to temporarily disable
               some or many of the tests in a suite so that one can focus on the problematic
               tests.  Rather than using a mess of comments, this module provides a
               function 'skip' (and a few variants) that causses a test or an entire test
               suite to be skipped - specifically, they will still show up in the suite
               as being 'skipped', but they will not be run.
License:       BSD3
License-File:  LICENSE
Author:        Gregory Crosswhite <gcrosswhite@gmail.com>
Maintainer:    Gregory Crosswhite <gcrosswhite@gmail.com>
Build-Type:    Simple

Source-Repository head
  Type:                git
  Location:            git://github.com/gcross/test-framework-skip.git

Library
    Build-Depends:
        base >= 3 && < 5,
        test-framework >= 0.8 && < 1.0
    Exposed-Modules:
        Test.Framework.Skip
    GHC-Options: -Wall

Test-Suite tests
    Type: exitcode-stdio-1.0
    Main-is: tests.hs
    Build-depends:
        test-framework-skip,
        base >= 3 && < 5,
        HUnit == 1.2.*,
        QuickCheck >= 2.4 && < 2.6,
        smallcheck == 1.0.*,
        test-framework >= 0.8 && < 1.0,
        test-framework-hunit >= 0.2 && < 0.4,
        test-framework-quickcheck2 >= 0.2 && < 0.4,
        test-framework-smallcheck == 0.2.*