def test_common_organization_path():
    organization = "oyster"

    expected = "organizations/{organization}".format(
        organization=organization, )
    actual = ImageAnnotatorClient.common_organization_path(organization)
    assert expected == actual
def test_parse_common_organization_path():
    expected = {
        "organization": "nudibranch",
    }
    path = ImageAnnotatorClient.common_organization_path(**expected)

    # Check that the path construction is reversible.
    actual = ImageAnnotatorClient.parse_common_organization_path(path)
    assert expected == actual