mirror of
https://github.com/pestphp/pest.git
synced 2026-06-05 10:52:14 +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',
|
|
]);
|