Exemple #1
0
def test_wifi_on_when_raise_error():
    c = DummyRadioControl(raise_error=Exception)
    with pytest.raises(Exception):
        c.wifi_on()
Exemple #2
0
def test_wifi_on():
    c = DummyRadioControl()
    c.wifi_on()
    assert c.called_wifi_on == 1