Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. setupAroundAll :: forall outer (outers :: [Type]) inner result . SetupFunc outer -> TestDefM (outer ': outers) inner result -> TestDefM outers inner result

    sydtest Test.Syd

    Use aroundAll with a SetupFunc

  2. setupAroundAllWith :: forall oldOuter newOuter (outers :: [Type]) inner result . (oldOuter -> SetupFunc newOuter) -> TestDefM (newOuter ': (oldOuter ': outers)) inner result -> TestDefM (oldOuter ': outers) inner result

    sydtest Test.Syd

    Use aroundAllWith with a SetupFunc

  3. specifyWithAll :: forall test (outers :: [Type]) inner . (HasCallStack, IsTest test, Arg1 test ~ HList outers, Arg2 test ~ inner) => String -> test -> TestDefM outers inner ()

    sydtest Test.Syd

    A synonym for itWithAll

  4. testDefCallStack :: TDef value -> CallStack

    sydtest Test.Syd

    No documentation available.

  5. withParallelism :: forall (a :: [Type]) b c . Parallelism -> TestDefM a b c -> TestDefM a b c

    sydtest Test.Syd

    Annotate a test group with Parallelism.

  6. xitWithAll :: forall test (outers :: [Type]) inner . (HasCallStack, IsTest test, Arg1 test ~ HList outers, Arg2 test ~ inner) => String -> test -> TestDefM outers inner ()

    sydtest Test.Syd

    No documentation available.

  7. xspecifyWithAll :: forall test (outers :: [Type]) inner . (HasCallStack, IsTest test, Arg1 test ~ HList outers, Arg2 test ~ inner) => String -> test -> TestDefM outers inner ()

    sydtest Test.Syd

    A synonym for xitWithAll

  8. module Test.Syd.Def.AroundAll

    This module defines all the functions you will use to define your test suite.

  9. afterAll :: forall outer (otherOuters :: [Type]) inner result . (outer -> IO ()) -> TestDefM (outer ': otherOuters) inner result -> TestDefM (outer ': otherOuters) inner result

    sydtest Test.Syd.Def.AroundAll

    Run a custom action after all spec items, using the outer resource a.

  10. afterAll' :: forall (outers :: [Type]) inner result . (HList outers -> IO ()) -> TestDefM outers inner result -> TestDefM outers inner result

    sydtest Test.Syd.Def.AroundAll

    Run a custom action after all spec items, using all the outer resources.

Page 337 of many | Previous | Next