mirror of
https://github.com/pestphp/pest.git
synced 2026-04-20 22:20:17 +02: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',
|
|
]);
|