File tree 1 file changed +24
-0
lines changed
1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 488
488
Pulse::ignore (fn () => expect (DB ::table ('pulse_values ' )->count ())->toBe (0 ));
489
489
});
490
490
491
+ it ('handles controller nested route groups ' , function () {
492
+ Config::set ('pulse.recorders. ' .SlowRequests::class.'.threshold ' , 0 );
493
+
494
+ Route::controller (MyController::class)->group (function () {
495
+ Route::get ('index ' , 'index ' )->name ('test ' )->withoutMiddleware ('auth:admin ' );
496
+ })->withoutMiddleware ('auth ' );
497
+
498
+ $ response = get ('/index ' );
499
+ Pulse::stopRecording ();
500
+
501
+ $ response ->assertContent ('ok ' );
502
+ $ entries = DB ::table ('pulse_entries ' )->get ();
503
+ expect ($ entries )->toHaveCount (1 );
504
+ expect ($ entries [0 ]->key )->toBe (json_encode (['GET ' , '/index ' , 'MyController@index ' ]));
505
+ });
506
+
507
+ class MyController
508
+ {
509
+ public function index ()
510
+ {
511
+ return 'ok ' ;
512
+ }
513
+ }
514
+
491
515
class ExceptionThrowingRecorder
492
516
{
493
517
public function register (callable $ record , Application $ app ): void
You can’t perform that action at this time.
0 commit comments