def test_parse_common_folder_path(): expected = { "folder": "abalone", } path = SessionsClient.common_folder_path(**expected) # Check that the path construction is reversible. actual = SessionsClient.parse_common_folder_path(path) assert expected == actual
def test_common_folder_path(): folder = "scallop" expected = "folders/{folder}".format(folder=folder, ) actual = SessionsClient.common_folder_path(folder) assert expected == actual