~aleteoryx/muditaos

ref: a3d2c9fead9e5287e29981cbcdbdb56ce8535933 muditaos/test/pytest/test_harness.py -rw-r--r-- 357 bytes
a3d2c9fe — Pawel.Paprocki [EGD-5863] Add retry dialog window 4 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
# For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md

import pytest


@pytest.mark.skip("not working ;/")
@pytest.mark.rt1051
@pytest.mark.usefixtures("phone_unlocked")
def test_send_AT(harness):
    ret = harness.connection.send_at("AT")
    print(ret)
    assert "OK" in ret