()
| 70 | |
| 71 | |
| 72 | def test_option_set_default(): |
| 73 | opt = Option("A_FAKE_OPTION", "default-value") |
| 74 | assert not opt.is_set() |
| 75 | assert opt.set_default("new-value") == "new-value" |
| 76 | assert opt.is_set() |
| 77 | |
| 78 | |
| 79 | def test_cannot_subscribe_immutable_option(): |
nothing calls this directly
no test coverage detected