Enter the query into the form above. You can look for specific version of a package by using @ symbol like this: gcc@10.
API method:
GET /api/packages?search=hello&page=1&limit=20
where search is your query, page is a page number and limit is a number of items on a single page. Pagination information (such as a number of pages and etc) is returned
in response headers.
If you'd like to join our channel webring send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
This package provides the means for integrating the hedgehog testing library with the tasty testing framework.
Feat (Functional Enumeration of Algebraic Types) provides enumerations as functions from natural numbers to values (similar to toEnum but for any algebraic data type). This can be used for SmallCheck-style systematic testing, QuickCheck-style random testing, and hybrids of the two.
This library provides a stable version of Hspec which is used to test the in-development version of Hspec.
Nanospec is a lightweight implementation of a subset of Hspec's API with minimal dependencies.
Tasty-th automatically generates tasty TestTrees from functions of the current module, using TemplateHaskell. This is a fork the original test-framework-th package, modified to work with tasty instead of test-framework.
HUnit is a unit testing framework for Haskell, inspired by the JUnit tool for Java.
This package provides HUnit support for the test-framework package.
This package provides generator and shrink functions for testing Unicode-related software.
This package gives users the ability to define tasty tests from Lua.
This package provides a Tasty provider for Hspec test suites.
Parts of doctest exposed as library. For use with the doctest-extract utility.
This package allows tests such as QuickCheck properties and HUnit test cases to be assembled into test groups, run in parallel (but reported in deterministic order, to aid diff interpretation) and filtered and controlled by command line options. All of this comes with colored test output, progress reporting and test statistics output.
This package provides HUnit support for the Tasty Haskell test framework.
This package provides QuickCheck2 support for the test-framework package.
hspec-discover is a tool which automatically discovers and runs Hspec tests.
This Haskell library provides convenient assertions with pretty-printed failure messages for QuickCheck properties, that are similar to those of HUnit.
This package provides QuickCheck instances for types provided by the Haskell Platform.
This package provides an orphan instance that allows you to use HUnit assertions as QuickCheck properties.
This library contains two functions: defaultMainGenerator and testGroupGenerator.
defaultMainGenerator will extract all functions beginning with case_, prop_, or test_ in the module and put them in a testGroup.
testGroupGenerator is like defaultMainGenerator but without defaultMain. It is useful if you need a function for the testgroup (e.g. if you want to be able to call the testgroup from another module).
This library provides the Hspec testing framework for Haskell, inspired by the Ruby library RSpec.
Integrate @inspection-testing@ into @tasty@ test suites.
Tasty is a modern testing framework for Haskell. It lets you combine your unit tests, golden tests, QuickCheck/SmallCheck properties, and any other types of tests into a single test suite.
This package provides a fancy test runner and support for golden testing. A golden test is an IO action that writes its result to a file. To pass the test, this output file should be identical to the corresponding ``golden'' file, which contains the correct result for the test. The test runner allows filtering tests using regexes, and to interactively inspect the result of golden tests.
This package provides a Known Answer Tests (KAT) framework for tasty.