Laravel:controller Tests

Write focused controller tests using HTTP assertions; keep heavy logic in Actions/Services and unit test them

jpcaparas 2e73894 559 B Updated

File contents

Controller Tests

Feature tests for endpoints

it('rejects empty email', function () {
  $this->post('/register', ['email' => ''])->assertSessionHasErrors('email');
});

Better tests

  • Move validation to Form Requests; assert errors from the request class
  • Extract business logic into Actions; unit test them directly
  • Use factories for realistic data; avoid heavy mocking

jpcaparas/superpowers-laravel/tree/main/skills/controller-tests commit 2e7389466a

Frequently asked questions

npx skillmds@latest add jpcaparas/laravel-controller-tests