Hoogle Search

Within LTS Haskell 24.25 (ghc-9.10.3)

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

  1. validIfSucceedsOnArbitrary :: (Show a, Show b, Arbitrary a, Validity b, CanFail f) => (a -> f b) -> Property

    genvalidity-hspec Test.Validity

    The function produces output that satisfies isValid if it is given input that is generated by arbitrary.

  2. validIfSucceedsOnArbitrary2 :: (Show a, Show b, Show c, Arbitrary a, Arbitrary b, Validity c, CanFail f) => (a -> b -> f c) -> Property

    genvalidity-hspec Test.Validity

    No documentation available.

  3. validIfSucceedsOnArbitrary3 :: (Show a, Show b, Show c, Show d, Arbitrary a, Arbitrary b, Arbitrary c, Validity d, CanFail f) => (a -> b -> c -> f d) -> Property

    genvalidity-hspec Test.Validity

    No documentation available.

  4. applicativeSpecOnArbitrary :: forall (f :: Type -> Type) . (HasCallStack, Eq (f Int), Show (f Int), Applicative f, Typeable f, Arbitrary (f Int)) => Spec

    genvalidity-hspec Test.Validity.Applicative

    Standard test spec for properties of Applicative instances for values generated with Arbitrary instances Example usage:

    applicativeSpecOnArbitrary @[]
    

  5. eqSpecOnArbitrary :: (Show a, Eq a, Typeable a, Arbitrary a) => Spec

    genvalidity-hspec Test.Validity.Eq

    Standard test spec for properties of Eq instances for arbitrary values Example usage:

    eqSpecOnArbitrary @Int
    

  6. functorSpecOnArbitrary :: forall (f :: Type -> Type) . (Eq (f Int), Show (f Int), Functor f, Typeable f, Arbitrary (f Int)) => Spec

    genvalidity-hspec Test.Validity.Functor

    Standard test spec for properties of Functor instances for values generated with Arbitrary instances Example usage:

    functorSpecOnArbitrary @[]
    

  7. monadSpecOnArbitrary :: forall (f :: Type -> Type) . (Eq (f Int), Show (f Int), Monad f, Typeable f, Arbitrary (f Int)) => Spec

    genvalidity-hspec Test.Validity.Monad

    Standard test spec for properties of Monad instances for values generated with Arbitrary instances Example usage:

    monadSpecOnArbitrary @[]
    

  8. monoidSpecOnArbitrary :: (Show a, Eq a, Monoid a, Typeable a, Arbitrary a) => Spec

    genvalidity-hspec Test.Validity.Monoid

    Standard test spec for properties of Monoid instances for arbitrary values Example usage:

    monoidSpecOnArbitrary @[Int]
    

  9. ordSpecOnArbitrary :: (Show a, Ord a, Typeable a, Arbitrary a) => Spec

    genvalidity-hspec Test.Validity.Ord

    Standard test spec for properties of Ord instances for arbitrary values Example usage:

    ordSpecOnArbitrary @Int
    

  10. showReadRoundTripOnArbitrary :: (Show a, Eq a, Read a, Arbitrary a) => Property

    genvalidity-hspec Test.Validity.Show

    showReadRoundTripOnArbitrary @Double
    

Page 32 of many | Previous | Next