laravel-controller-tests

📁 noartem/laravel-vue-skills 📅 Jan 25, 2026
13
总安装量
6
周安装量
#24935
全站排名
安装命令
npx skills add https://github.com/noartem/laravel-vue-skills --skill laravel-controller-tests

Agent 安装分布

codex 6
gemini-cli 5
opencode 5
windsurf 4
claude-code 4

Skill 文档

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