diff --git a/src/parse.rs b/src/parse.rs index b8b6fa41..10095a5f 100644 --- a/src/parse.rs +++ b/src/parse.rs @@ -306,6 +306,14 @@ mod tests { "az://account/container/path", (ObjectStoreScheme::MicrosoftAzure, "path"), ), + ( + "abfss://account/container", + (ObjectStoreScheme::MicrosoftAzure, ""), + ), + ( + "abfss://account/container/path", + (ObjectStoreScheme::MicrosoftAzure, "path"), + ), ( "gs://bucket/path", (ObjectStoreScheme::GoogleCloudStorage, "path"),