Same input always produces same output.
()
| 10 | |
| 11 | |
| 12 | def test_make_id_consistent(): |
| 13 | """Same input always produces same output.""" |
| 14 | assert _make_id("foo", "Bar") == _make_id("foo", "Bar") |
| 15 | |
| 16 | |
| 17 | def test_make_id_no_leading_trailing_underscores(): |
nothing calls this directly
no test coverage detected