Exemple #1
0
def test_parse_geo_target_constant_path():
    expected = {
        "criterion_id": "mussel",
    }
    path = ClickViewServiceClient.geo_target_constant_path(**expected)

    # Check that the path construction is reversible.
    actual = ClickViewServiceClient.parse_geo_target_constant_path(path)
    assert expected == actual
Exemple #2
0
def test_geo_target_constant_path():
    criterion_id = "cuttlefish"
    expected = "geoTargetConstants/{criterion_id}".format(
        criterion_id=criterion_id, )
    actual = ClickViewServiceClient.geo_target_constant_path(criterion_id)
    assert expected == actual