()
| 50 | import pytest |
| 51 | |
| 52 | def test_lowercases_short_words(): |
| 53 | assert fix_line('=== What Is A Domain Model') == '=== What Is a Domain Model' |
| 54 | |
| 55 | def test_fix_line_handles_quotes_and_slashes(): |
| 56 | assert fix_line('=== Foo "bar" baz') == '=== Foo "Bar" Baz' |
nothing calls this directly
no test coverage detected