Download the PHP package ozzie/pest-plugin-nest without Composer

On this page you can find all versions of the php package ozzie/pest-plugin-nest. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package pest-plugin-nest

[!WARNING] DEPRECATED: Pest has official support for describe blocks now

https://pestphp.com/docs/pest-spicy-summer-release#content-describe-blocks

Nest - Visually group your Pest tests

Nest is a plugin for PestPHP to allow visual separation in your test files and test output

Installation

For pest 2.0 you should make sure you are on ^1.0

For pest 1.0 you should make sure you are on ^0.1

Usage

Note While these functions forward their api to the native Pest test/it functions, you must use the Nest namespaced functions in order for the reporting to properly display.

Produces:

You can also nest multiple describe blocks and optionally use the when() block as an alternative to describe()

Produces:

You can also call the class directly if you prefer

API

test / it

These functions operate exactly the same as the Pest provided ones (as they forward their calls there under the hood). We need to use these functions though so that we can properly modify the test name in the output

describe / when

These functions are purely for grouping your test/it calls together

describe() will prefix all the nested tests with its description

when() will prefix all the nested tests with when + its description

These functions can be nested as many times as you need

Limitations

Unfortunately due to how the setup/teardown functions work you cannot nest them within describe/when blocks and have them only apply to that block. You still must only have one e.g. beforeEach call in the entire file which applies to every test.

You must also explicitly use the Ozze\Nest\test and Ozze\Nest\it functions when using describe or when so that we can properly update the test output.


All versions of pest-plugin-nest with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
pestphp/pest Version ^2.0
pestphp/pest-plugin Version ^2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package ozzie/pest-plugin-nest contains the following files

Loading the files please wait ....