Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lift function to "error" statement #14

Open
fogfish opened this issue Jul 18, 2023 · 0 comments
Open

Lift function to "error" statement #14

fogfish opened this issue Jul 18, 2023 · 0 comments

Comments

@fogfish
Copy link
Owner

fogfish commented Jul 18, 2023

Currently we are doing

it.Then(t).Should(
		it.Fail(
			func() error {
				return json.Unmarshal([]byte(geometryUnknown), geo)
			},
		),
	)

it would be nice to

it.Then(t).Should(
		it.Fail(json.Unmarshal([]byte(geometryUnknown), geo)),
	)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant