-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/


-- | Hspec support for the Tasty test framework.
--   
--   This package provides a Tasty provider for Hspec test suites.
@package tasty-hspec
@version 1.1.4


-- | <tt>hspec</tt> and <tt>tasty</tt> serve similar purposes; consider
--   using one or the other.
--   
--   However, in a pinch, this module allows you to run an <tt>hspec</tt>
--   <a>Spec</a> as a <tt>tasty</tt> <a>TestTree</a>.
module Test.Tasty.Hspec

-- | Create a <a>tasty</a> <a>TestTree</a> from an <a>Hspec</a>
--   <a>Spec</a>.
testSpec :: TestName -> Spec -> IO TestTree

-- | Create a list of <a>tasty</a> <a>TestTree</a> from an <a>Hspec</a>
--   <a>Spec</a>. This returns the same tests as <a>testSpec</a> but
--   doesn't create a <a>tasty</a> test group from them.
testSpecs :: Spec -> IO [TestTree]
instance Test.Tasty.Core.IsTest Test.Tasty.Hspec.Item
