Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. potentiallyFlaky :: forall (a :: [Type]) b c . TestDefM a b c -> TestDefM a b c

    sydtest Test.Syd

    Mark a test suite as 'potentially flaky', such that it will not fail if it is flaky but passes at least once.

  2. potentiallyFlakyWith :: forall (a :: [Type]) b c . String -> TestDefM a b c -> TestDefM a b c

    sydtest Test.Syd

    Like potentiallyFlaky, but with a message.

  3. 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

  4. 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

  5. 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

  6. testDefCallStack :: TDef value -> CallStack

    sydtest Test.Syd

    No documentation available.

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

    sydtest Test.Syd

    Annotate a test group with Parallelism.

  8. 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.

  9. 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

  10. module Test.Syd.Def.AroundAll

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

Page 337 of many | Previous | Next