()
| 18 | |
| 19 | |
| 20 | def test_source_str_function() -> None: |
| 21 | x = Source("3") |
| 22 | assert str(x) == "3" |
| 23 | |
| 24 | x = Source(" 3") |
| 25 | assert str(x) == "3" |
| 26 | |
| 27 | x = Source( |
| 28 | """ |
| 29 | 3 |
| 30 | """ |
| 31 | ) |
| 32 | assert str(x) == "\n3" |
| 33 | |
| 34 | |
| 35 | def test_source_from_function() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…