示例#1
0
def test_load_custom_fields_none():
    """Check if None value return empty dict for custom fields."""
    assert load_custom_fields(None) == {}
示例#2
0
def test_load_custom_fields_json():
    """Check if custom fields can be loaded using JSON data."""
    assert load_custom_fields(('{"isautomated":true}',)) == {"isautomated": True}
示例#3
0
def test_load_custom_fields():
    """Check if custom fields can be loaded using = notation."""
    assert load_custom_fields(("isautomated=true",)) == {"isautomated": "true"}
示例#4
0
def test_load_custom_fields_empty():
    """Check if empty value return empty dict for custom fields."""
    assert load_custom_fields(("",)) == {}
示例#5
0
def test_load_custom_fields():
    """Check if custom fields can be loaded using = notation."""
    assert load_custom_fields(('isautomated=true',)) == {
        'isautomated': 'true'
    }
示例#6
0
def test_load_custom_fields_json():
    """Check if custom fields can be loaded using JSON data."""
    assert load_custom_fields(('{"isautomated":true}', )) == {
        'isautomated': True,
    }
示例#7
0
def test_load_custom_fields_none():
    """Check if None value return empty dict for custom fields."""
    assert load_custom_fields(None) == {}
示例#8
0
def test_load_custom_fields_empty():
    """Check if empty value return empty dict for custom fields."""
    assert load_custom_fields(('', )) == {}
示例#9
0
def test_load_custom_fields():
    """Check if custom fields can be loaded using = notation."""
    assert load_custom_fields(('isautomated=true', )) == {
        'isautomated': 'true'
    }