()
| 241 | |
| 242 | |
| 243 | def test_simple(): |
| 244 | o = TO() |
| 245 | assert repr(o) |
| 246 | assert "one" in o |
| 247 | |
| 248 | with pytest.raises(Exception, match="No such option"): |
| 249 | assert o.unknown |
| 250 | |
| 251 | |
| 252 | def test_items(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…