├── .gitignore ├── LICENSE ├── README.md ├── bsconfig.json ├── changelog.md ├── package.json ├── src ├── Arbitrary.res ├── Global.res ├── Intf_Property.res ├── Property.res └── Property.resi ├── test ├── ArbitraryTest.res ├── ExampleTest.res ├── PropertyTest.res └── SimpleTests.res └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-fast-check/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-fast-check/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-fast-check/HEAD/README.md -------------------------------------------------------------------------------- /bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-fast-check/HEAD/bsconfig.json -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-fast-check/HEAD/changelog.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-fast-check/HEAD/package.json -------------------------------------------------------------------------------- /src/Arbitrary.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-fast-check/HEAD/src/Arbitrary.res -------------------------------------------------------------------------------- /src/Global.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-fast-check/HEAD/src/Global.res -------------------------------------------------------------------------------- /src/Intf_Property.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-fast-check/HEAD/src/Intf_Property.res -------------------------------------------------------------------------------- /src/Property.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-fast-check/HEAD/src/Property.res -------------------------------------------------------------------------------- /src/Property.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-fast-check/HEAD/src/Property.resi -------------------------------------------------------------------------------- /test/ArbitraryTest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-fast-check/HEAD/test/ArbitraryTest.res -------------------------------------------------------------------------------- /test/ExampleTest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-fast-check/HEAD/test/ExampleTest.res -------------------------------------------------------------------------------- /test/PropertyTest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-fast-check/HEAD/test/PropertyTest.res -------------------------------------------------------------------------------- /test/SimpleTests.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-fast-check/HEAD/test/SimpleTests.res -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-fast-check/HEAD/yarn.lock --------------------------------------------------------------------------------