Example #1
0
def test_all_off_when_raise_error():
    c = DummyRadioControl(raise_error=Exception)
    with pytest.raises(Exception):
        c.all_off()
Example #2
0
def test_all_off():
    c = DummyRadioControl()
    c.all_off()
    assert c.called_all_off == 1