feat(presets): add expectation for Laravel mail class

This commit is contained in:
Punyapal Shah
2024-06-10 21:38:20 +05:30
parent 917f7a64a0
commit 65dacd5647

View File

@ -36,5 +36,9 @@ final class Laravel extends AbstractPreset
$this->expectations[] = expect('App\Exceptions')
->toImplement('Throwable');
$this->expectations[] = expect('App\Mail')
->toHaveConstructor()
->toExtend('Illuminate\Mail\Mailable');
}
}