Files
ruff/src
Harutaka Kawamura 498134b7ee Audit unittest assert methods (#1736)
I ran the following code in Python 3.10 to automatically generate a list
of enums.

```python
import unittest

print(
    ",\n".join(
        sorted(
            m.removeprefix("assert") if m != "assert_" else "Underscore"
            for m in dir(unittest.TestCase)
            if m.startswith("assert")
        )
    )
)
```
2023-01-08 16:21:34 -05:00
..
2023-01-07 15:14:58 -05:00
2023-01-07 07:29:04 -05:00
2023-01-06 20:25:59 -05:00