mirror of
https://github.com/pestphp/pest.git
synced 2026-07-22 09:30:02 +02:00
12 lines
192 B
PHP
12 lines
192 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Pest\PendingCalls\UsesCall;
|
|
|
|
it('proxies to uses call', function (): void {
|
|
$in = pest()->in();
|
|
|
|
expect($in)->toBeInstanceOf(UsesCall::class);
|
|
});
|