'laravel test blade @extends mocking
I want to test a function that returns a view but is running an error because it trying to extend a blade. How can I mock @extends function?
search.blade.php:
@extends('main')
@section('main-content')
<h1 class="py-4">Title</h1>
more code....
@endsection
I try this:
View::shouldReceive('make')
->with('main');
not working, get this error:
No matching handler found for Mockery_2_Illuminate_View_Factory::make('search.search', [], []). Either the method was unexpected or its arguments matched no expected argument list for this method
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
