network-arbitrary: Arbitrary Instances for Network Types

[ library, mit, testing ] [ Propose Tags ]

You can use network-arbitrary to provide Arbitrary instances for Network module types.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.0, 0.2.0.0, 0.3.0.0, 0.4.0.1, 0.4.0.2, 0.4.0.7, 0.5.0.0, 0.6.0.0, 0.7.0.0, 1.0.0.0
Change log ChangeLog.md
Dependencies base (>=4.6 && <4.15 || >=4.15.0.0 && <4.16 || >=4.16.0.0 && <4.17 || >=4.17.0.0 && <4.18 || >=4.18.0.0 && <4.19 || >=4.19.1.0 && <4.20), bytestring (>=0.10 && <0.11 || >=0.11.1.0 && <0.12 || >=0.12.1.0 && <0.13), http-media (>=0.6 && <0.9), http-types (>=0.9 && <0.13), network-uri (>=2.6 && <2.8), QuickCheck (>=2.9 && <2.16) [details]
License MIT
Copyright (c) 2018 Alex Brandt
Author Alex Brandt
Maintainer alunduil@gmail.com
Category Testing
Home page https://github.com/alunduil/network-arbitrary
Bug tracker https://github.com/alunduil/network-arbitrary/issues
Source repo head: git clone https://github.com/alunduil/network-arbitrary
Uploaded by alunduil at 2024-04-24T21:16:51Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 3892 total (25 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2024-04-24 [all 1 reports]

Readme for network-arbitrary-1.0.0.0

[back to package description]

network-arbitrary

Homepage By Alex Brandt alunduil@gmail.com

Description

You can use network-arbitrary to provide Arbitrary instances for Network module types.

Terms of use

You are free to use network-arbitrary without any conditions. See the [LICENSE] file for details.

How to use network-arbitrary

{-# LANGUAGE TypeApplications #-}
module main where

import Network.URI (URI)
import Network.URI.Arbitrary ()

main = generate (arbitrary @URI) >>= print

Documentation

Getting Help

  • GitHub Issues: Support requests, bug reports, and feature requests

How to Help