(t *testing.T)
| 65 | } |
| 66 | |
| 67 | func TestPersistentPreRunE_ConfigSubcommands(t *testing.T) { |
| 68 | f, _, _, _ := cmdutil.TestFactory(t, nil) |
| 69 | |
| 70 | configCmd := cmdconfig.NewCmdConfig(f) |
| 71 | for _, sub := range configCmd.Commands() { |
| 72 | if !cmdutil.IsAuthCheckDisabled(sub) { |
| 73 | t.Errorf("expected config subcommand %q to inherit disabled auth check", sub.Name()) |
| 74 | } |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | func TestRootLong_AgentSkillsLinkTargetsReadmeSection(t *testing.T) { |
| 79 | // The human skills-install guidance now lives in the root usage-template |
nothing calls this directly
no test coverage detected