(mock_skill1, mock_skill2)
| 171 | |
| 172 | |
| 173 | def test_list_skills(mock_skill1, mock_skill2): |
| 174 | toolset = skill_toolset.SkillToolset([mock_skill1, mock_skill2]) |
| 175 | skills = toolset._list_skills() |
| 176 | assert len(skills) == 2 |
| 177 | assert mock_skill1 in skills |
| 178 | assert mock_skill2 in skills |
| 179 | |
| 180 | |
| 181 | def test_clone_with_updated_skills(mock_skill1, mock_skill2): |
nothing calls this directly
no test coverage detected