Refactored pipelines, errors

This commit is contained in:
Peter Grlica
2021-08-26 10:36:38 +02:00
parent 1bf4cbbe3e
commit 34aaad7800
28 changed files with 968 additions and 973 deletions
+2
View File
@@ -19,6 +19,8 @@ func TestPathSplit(t *testing.T) {
{p: "a.[]", err: invalidPathErr.Error()},
{p: "a[]", r: []string{"a", ""}},
{p: "a[1]bzz", err: invalidPathErr.Error()},
{p: "a[b][c].d[1]", r: []string{"a", "b", "c", "d", "1"}},
{p: "a.Content-Type", r: []string{"a", "Content-Type"}},
}
for _, tc := range tcc {