@@ -223,6 +223,30 @@ describe 'app' {
223223 $bucket | should be $null
224224 $version | should be $null
225225
226+ $query = " test.json"
227+ $app , $bucket , $version = parse_app $query
228+ $app | should be " test.json"
229+ $bucket | should be $null
230+ $version | should be $null
231+
232+ $query = " .\test.json"
233+ $app , $bucket , $version = parse_app $query
234+ $app | should be " .\test.json"
235+ $bucket | should be $null
236+ $version | should be $null
237+
238+ $query = " ..\test.json"
239+ $app , $bucket , $version = parse_app $query
240+ $app | should be " ..\test.json"
241+ $bucket | should be $null
242+ $version | should be $null
243+
244+ $query = " \\share\test.json"
245+ $app , $bucket , $version = parse_app $query
246+ $app | should be " \\share\test.json"
247+ $bucket | should be $null
248+ $version | should be $null
249+
226250 $query = " https://example.com/test.json"
227251 $app , $bucket , $version = parse_app $query
228252 $app | should be " https://example.com/test.json"
0 commit comments