Esempio n. 1
0
def test_parse_invalid_objects(bad_object):
    with pytest.raises(DCOSException):
        jsonitem._parse_object(bad_object)
Esempio n. 2
0
def test_parse_invalid_objects(bad_object):
    with pytest.raises(DCOSException):
        jsonitem._parse_object(bad_object)
Esempio n. 3
0
def test_parse_object():
    assert jsonitem._parse_object('{"key": "value"}') == {'key': 'value'}
Esempio n. 4
0
def test_parse_object():
    assert jsonitem._parse_object('{"key": "value"}') == {'key': 'value'}