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 module creates a Fake ShareDir for your modules for testing.
Test::Tester allows testing of test modules based on Test::Builder with a minimum of effort.
This module causes any warnings during testing to be captured and stored. It automatically adds an extra test that will run when your script ends to check that there were no warnings. If there were any warnings, the test will fail and output diagnostics of where, when and what the warning was, including a stack trace of what was going on when it occurred.
This test module helps write unit tests which assert that the code under test reports metrics via Metrics::Any.
Test::Version checks to ensure that all modules have a version defined, and that the version is valid.
Test::Manifest overrides the default test file order. Instead of running all of the t/*.t files in ASCII-betical order, it looks in the t/test_manifest file to find out which tests you want to run and the order in which you want to run them. It constructs the right value for the build system to do the right thing.
Check POD files for errors or warnings in a test file, using Pod::Simple to do the heavy lifting.
This library provides functions to enable testing of files and directories. For instance, the file_ok helper can test whether the contents of a file is equal to a particular string.
This module adds a test to your Perl distribution which checks for pod coverage of all appropriate files.
Test::Memory::Cycle is built on top of Devel::Cycle to give you an easy way to check for these circular references.
use Test::Memory::Cycle; my $object = new MyObject; # Do stuff with the object. memory_cycle_ok( $object );
This module tests that commands given particular arguments result in particular outputs by way of the exit status word, standard output, and standard error.
This module provides a few convenience methods for testing warning based code.
This module exports three test functions and four diff-style functions.
Test::Class::Most provides some more convenience when using Test::Class.
Simple test harness which allows tests to be run and results automatically aggregated and output to STDOUT.
Test::EOL lets you check for the presence of trailing whitespace and/or windows line endings in your perl code.
Test::Filename provides functions to convert all path separators automatically.
This module is primarily (but not exclusively) for use in test scripts: A block eval configurable and extensible but by default trapping STDOUT, STDERR, warnings, exceptions, would-be exit codes, and return values from boxed blocks of test code.
This module was written to ensure that a META.json file meets the specification.
This module provides a few convenience methods for testing exception based code. It is built with Test::Builder and plays happily with Test::More and friends.
Test::TrailingSpace tests for trailing spaces in Perl source files.
Test::Inter is another framework for writing test scripts, which offer the ability to access specific tests in a reasonably interactive fashion, primarily for debugging purposes. Much of the syntax is loosely inspired by Test::More.
Test::Deep compares two structures by going through each level, ensuring that the values match, that arrays and hashes have the same elements and that references are blessed into the correct class. It also handles circular data structures without getting caught in an infinite loop.
Test::Base gives a way to trivially write your own test framework base class. It concentrates on offering reusable data driven patterns, so that you can write tests with a minimum of code.