mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
17 lines
343 B
PHP
17 lines
343 B
PHP
<?php
|
|
|
|
use Pest\Expectation;
|
|
|
|
test('globals')
|
|
->expect(['dd', 'dump', 'ray'])
|
|
->not->toBeUsed()
|
|
->ignoring(Expectation::class);
|
|
|
|
test('contracts')
|
|
->expect('Pest\Contracts')
|
|
->toOnlyUse([
|
|
'NunoMaduro\Collision\Contracts',
|
|
'Pest\Factories\TestCaseMethodFactory',
|
|
'Symfony\Component\Console',
|
|
]);
|