Tobias Salzmann

Results 27 issues of Tobias Salzmann

## Description Add `JSON().Dasel()` methods. This should be a foundation for other file formats such as xml, yaml, etc. ## Notes - [x] Need to wait for release of https://github.com/TomWright/dasel/pull/251....

feature

## Description Following code fails in `expect_body_json_jq_test.go` ```go t.Run("array", func(t *testing.T) { Test(t, Post(s.URL), Description("first expression returning an array"), Expect().Body().JSON().JQ(".Bills", ".[].ID").Equal([]int{21, 25}), ) Test(t, Post(s.URL), Description("first expression returning single json...

We have ``` Expect().Body().Bytes().Equal([]byte("Hello World")) ``` but it would also be nice to have ``` Expect().Body().JSON().Bytes().Equal([]byte("Hello World")) ``` and ``` Expect().Body().JSON().JQ(".").Bytes().Equal([]byte("Hello World")) ```

Each Error should contain an ErrorStack of the collected Errors See also: interpreter.go, testhelpers/helpers.go

enhancement