We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfcfd70 commit 5fb09b1Copy full SHA for 5fb09b1
test/tZarrCreate.m
@@ -55,6 +55,14 @@ function invalidFilePath(testcase)
55
56
% Non-text input
57
testcase.verifyError(@()zarrcreate([],testcase.ArrSize),errID);
58
+
59
+ % Invalid bucket path
60
+ errID = 'MATLAB:Zarr:invalidS3URL';
61
+ inpPath = 'https://invalid/arr/path';
62
+ testcase.verifyError(@()zarrcreate(inpPath,[10 10]),errID);
63
64
+ inpPath = 'http://invalid/arr/path';
65
66
end
67
68
function pathContainingInvalidChars(testcase)
0 commit comments