laravel:controller-tests
24
总安装量
24
周安装量
#15629
全站排名
安装命令
npx skills add https://github.com/jpcaparas/superpowers-laravel --skill laravel:controller-tests
Agent 安装分布
claude-code
18
gemini-cli
15
opencode
13
codex
11
cursor
11
github-copilot
10
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