(
self, values, what_func, what_desc,
)
| 311 | ) |
| 312 | |
| 313 | def chordsTest( |
| 314 | self, values, what_func, what_desc, |
| 315 | ): |
| 316 | for x in values: |
| 317 | for y in x[0]: |
| 318 | self.assertTrue( |
| 319 | y in what_func(x[1]), |
| 320 | "The %s '%s' should be in '%s', but is not." |
| 321 | % (what_desc, y, what_func(x[1])), |
| 322 | ) |
| 323 | |
| 324 | def test_from_shorthand(self): |
| 325 | answers = { # Triads Augmented Sevenths Sixths 6/9 Slash chords |
no outgoing calls
no test coverage detected