-
Notifications
You must be signed in to change notification settings - Fork 8
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
Feature: each-is
#11
Comments
Would it be better to have a separate |
Yeah, I think that’s right. I’m not a fan of those bdd-style libraries that try to give you an English word for everything you might want to say, but the aim of keeping a simple and consistent semantics for the function itself is quite worthwhile. |
Yeah, I'm similar. I'm a worried that |
|
That one sounds good to me: clear and easy to understand. |
Add a new macro,
each-is
:each-is forms &opt note
forms
should be a tuple or array of assertion forms, of the same kind understood byis
.(each-is @[foo bar baz] "note")
is equivalent to:original issue text:
(is @[foo bar baz] note)
would be equivalent to(is foo note) (is bar note) ...
The text was updated successfully, but these errors were encountered: