mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
10 lines
160 B
PHP
10 lines
160 B
PHP
<?php
|
|
|
|
use Pest\PendingCalls\UsesCall;
|
|
|
|
it('proxies to uses call', function () {
|
|
$in = pest()->in();
|
|
|
|
expect($in)->toBeInstanceOf(UsesCall::class);
|
|
});
|