(self)
| 16 | assert candidate_suffixes("foo.bar") == ["", "bar.", "foo.bar."] |
| 17 | |
| 18 | def test_exported_name(self) -> None: |
| 19 | assert exported_name("foo") == "foo" |
| 20 | assert exported_name("foo.bar") == "foo___bar" |
| 21 | |
| 22 | def test_make_module_translation_map(self) -> None: |
| 23 | assert make_module_translation_map(["foo", "bar"]) == {"foo": "foo.", "bar": "bar."} |
nothing calls this directly
no test coverage detected