| 1622 | # IntEnum uses the value and not the name for %s etc. |
| 1623 | IDES = 15 |
| 1624 | class Str(enum.StrEnum): |
| 1625 | # StrEnum uses the value and not the name for %s etc. |
| 1626 | ABC = 'abc' |
| 1627 | # Testing Unicode formatting strings... |
| 1628 | self.assertEqual("%s, %s" % (Str.ABC, Str.ABC), |
| 1629 | 'abc, abc') |
no outgoing calls
no test coverage detected