def test_parse_common_project_path():
    expected = {
        "project": "mussel",
    }
    path = ImageAnnotatorClient.common_project_path(**expected)

    # Check that the path construction is reversible.
    actual = ImageAnnotatorClient.parse_common_project_path(path)
    assert expected == actual
def test_common_project_path():
    project = "cuttlefish"

    expected = "projects/{project}".format(project=project, )
    actual = ImageAnnotatorClient.common_project_path(project)
    assert expected == actual