packages feed

hspec-shouldbe (empty) → 0.0.0

raw patch · 4 files changed

+61/−0 lines, 4 filesdep +hspecdep +test-shouldbesetup-changed

Dependencies added: hspec, test-shouldbe

Files

+ LICENSE view
@@ -0,0 +1,19 @@+Copyright (c) 2011, 2012 Simon Hengel <sol@typeful.net>++Permission is hereby granted, free of charge, to any person obtaining a copy+of this software and associated documentation files (the "Software"), to deal+in the Software without restriction, including without limitation the rights+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell+copies of the Software, and to permit persons to whom the Software is+furnished to do so, subject to the following conditions:++The above copyright notice and this permission notice shall be included in+all copies or substantial portions of the Software.++THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN+THE SOFTWARE.
+ Setup.lhs view
@@ -0,0 +1,3 @@+#!/usr/bin/env runhaskell+> import Distribution.Simple+> main = defaultMain
+ hspec-shouldbe.cabal view
@@ -0,0 +1,26 @@+name:             hspec-shouldbe+version:          0.0.0+synopsis:         Convenience wrapper and utilities for hspec+license:          MIT+license-file:     LICENSE+copyright:        (c) 2011, 2012 Simon Hengel+author:           Simon Hengel <sol@typeful.net>+maintainer:       Simon Hengel <sol@typeful.net>+build-type:       Simple+category:         Testing+cabal-version:    >= 1.6++source-repository head+  type: git+  location: https://github.com/sol/hspec-shouldbe++library+  ghc-options:+      -Wall+  hs-source-dirs:+      src+  build-depends:+      hspec+    , test-shouldbe+  exposed-modules:+      Test.Hspec.ShouldBe
+ src/Test/Hspec/ShouldBe.hs view
@@ -0,0 +1,13 @@+{-# LANGUAGE NoImplicitPrelude #-}+module Test.Hspec.ShouldBe (+  module Test.HUnit.ShouldBe+, module Test.Hspec.Monadic+, prop+, property+)+where++import           Test.Hspec.Monadic+import           Test.Hspec.QuickCheck+import           Test.Hspec.HUnit ()+import           Test.HUnit.ShouldBe