rspec / rspec-expectations

Provides a readable API to express expected outcomes of a code example
https://rspec.info
MIT License
1.26k stars 396 forks source link

Change matcher protocol and definition API to not reference `should` and `should_not` #270

Closed myronmarston closed 10 years ago

myronmarston commented 11 years ago

We've been moving in the direction of expect from should but there are "legacy" bits of the API that still speak in terms of should and should_not. In 3.0 I'd like to come up with an improved API that doesn't use these terms while still maintaining compatibility for code out there that is based on those APIs, and then we can remove the old APIs in 4.0.

The specific APIs:

I don't have a proposal for new names for these yet...this is mostly a place holder issue to facilitate discussion :).

fables-tales commented 11 years ago

So I'm thinking s/should/expectation/ on most of these and s/should not/negative expectation. That is:

failure_message_for_expectation
failure_message_for_negative_expectation
match_for_expectation
match_for_negative_expectation
RSpec::Matches.last_expectation

Thoughts?

zaphod42 commented 11 years ago

The terminology on matchers can use the domain of matching and mismatching:

booch commented 11 years ago

I'm not sure these are better, but:

failure_message
negative_failure_message
match
negative_match
JonRowe commented 11 years ago

I like the shorter ones that @booch suggests, although haven't we been discussing using === for match?

myronmarston commented 11 years ago

I like @samphippen's suggestions, personally.

The terminology on matchers can use the domain of matching and mismatching:

Interesting idea, but IMO, "mismatch" gives the wrong sense: to me, a mismatch, suggests a failure of an attempted positive expectation. It doesn't suggest a negative expectation to me.

haven't we been discussing using === for match?

On the built-in matchers, we've discussed aliasing match? to === rather than == (as it is aliased to now) to better align with the semantics of these operators, but we're not considering making === a required part of the matcher protocol rather than match?.

JonRowe commented 11 years ago

Ah ok, brain misfire :)

jnicklas commented 11 years ago

+1 on @booch's suggestion.

cupakromer commented 11 years ago

I've gone back and forth on which I like better. I think my sticking point with @booch's suggestion is the negative_failure_message and negative_failure_match makes my brain stumble. It reads like a double negative. So I'm leaning more to @samphippen versions even those they are more verbose.

jnicklas commented 11 years ago

How about negated_failure_message and negated_match as opposed to negative_failure_message and negative_match.

JonRowe commented 11 years ago

I like those, but what about flipping them? In fact... what about:

match
match_when_negated
failure_message
failure_message_when_negated
myronmarston commented 11 years ago

I like negated over negative, I think. That said, there's something nice about the symmetry of:

positive_match
negative_match
positive_failure_message
negative_failure_message

...which doesn't line up with negated well.

xaviershay commented 10 years ago

+1 these:

match
match_when_negated
failure_message
failure_message_when_negated

Clarity beats symmetry, and these ones have the benefit of mostly being terse.

dchelimsky commented 10 years ago

I don't like any of the options presented here, but I don't have a better suggestion. The words positive or negative or negated apply to the expectation, not the message. I think these names tell the right story:

failure_message_for_positive_expectation
failure_message_for_negative_expectation
match_for_positive_expectation
match_for_negative_expectation

... but obviously they are painfully long.

FYI - the original names were failure_message and negative_failure_message. I changed them to failure_message_for_should[_not] because negative_failure_message sounded like the word negative was describing the failure message rather than the expectation that failed.

I can almost get behind @myronmarston's suggestion ([positive|negative]_[match|failure_message]) because of the symmetry which, btw, I think lends clarity (even if clarity trumps).

Wish I had a better answer. Good luck!

soulcutter commented 10 years ago

Of the proposals thus far, I prefer @myronmarston 's

positive_match
negative_match
positive_failure_message
negative_failure_message

The similarly-prefixed methods go together, which makes it clearer to me. Negated is descriptive, but will not be as self-evident.

JonRowe commented 10 years ago

I still prefer:

match
match_when_negated
failure_message
failure_message_when_negated

As this way the method names are paired with their opposite, I find the prefixes not matching for the same functionality confusing.

myronmarston commented 10 years ago

Funny how it's hard to get consensus on this!

A few points of clarification (although these things may already be obvious):

At this point, I think I like @JonRowe's suggestion the best:

match
match_when_negated
failure_message
failure_message_when_negated

In particular, failure_message_when_negated makes it clear that it's not the failure message itself that is negated but the match as a whole (in contrast to negative_failure_message which is a bit unclear as others have said).

Barring a better suggestion between now and however long it takes me to put up a PR for this, that's what I'll go with. Any objections?

xaviershay commented 10 years ago

go man go

soulcutter commented 10 years ago

No objections here.

jnicklas commented 10 years ago

I like those too.

fables-tales commented 10 years ago

:+1:

myronmarston commented 10 years ago

Fixed by #373.