Run2 scala testing idioms
[COLM'26] SkillLearnBench is the first benchmark for evaluating continual learning methods that automatically generate agent skills.
npx -y skills add cxcscmu/SkillLearnBench --skill run2_scala-testing-idiomsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Idiomatic Scala testing patterns with ScalaTest.
SKILL.md
0.3 KB, 52 tokens by cl100k_base, as published. Nobody here has run it
Standard Approach
- Matchers: Use
result shouldBe expected. - Setup: Use
BeforeAndAfterEachfor shared setup/teardown. - Structure: Keep tests close to implementations, use
packagecorrectly.