Пример #1
0
def test_setup():
    from sgp30 import SGP30
    dev = MockI2CDev()
    assert dev._open is True
    sgp30 = SGP30(i2c_dev=dev, i2c_msg=MockI2CMsg())
    del sgp30
    assert dev._open is False
Пример #2
0
def test_get_unique_id():
    from sgp30 import SGP30
    sgp30 = SGP30(i2c_dev=MockI2CDev(), i2c_msg=MockI2CMsg())
    assert sgp30.get_unique_id() == 0xffffffffffff
Пример #3
0
def test_setup():
    from sgp30 import SGP30
    sgp30 = SGP30(i2c_dev=MockI2CDev(), i2c_msg=MockI2CMsg())
    del sgp30
Пример #4
0
def test_get_feature_set_version():
    from sgp30 import SGP30
    sgp30 = SGP30(i2c_dev=MockI2CDev(), i2c_msg=MockI2CMsg())
    assert sgp30.get_feature_set_version() == (0xc, 0xfe)