Hash_excluding/hash_only?

I know there is a hash_including, which is quite useful. Are there by
chance any matchers for ensuring a hash includes only the specified
values, or that it doesn’t have certain values?

Thanks,
Steve

On Wed, Aug 6, 2008 at 9:22 AM, Steve [email protected] wrote:

I know there is a hash_including, which is quite useful. Are there by
chance any matchers for ensuring a hash includes only the specified values,
or that it doesn’t have certain values?

I’m just on my way out the door, but just wanted to say that if there
isn’t,
writing your own matcher is super easy.

///ark

Mark W. wrote:

isn’t, writing your own matcher is super easy.

///ark

Yeah, I just wanted to make sure the functionality didn’t exist before I
wrote my own.

Steve wrote:

Mark W. wrote:

On Wed, Aug 6, 2008 at 9:22 AM, Steve <[email protected]
mailto:[email protected]> wrote:

I know there is a hash_including, which is quite useful. Are there
by chance any matchers for ensuring a hash includes only the
specified values, or that it doesn't have certain values?

How about using should_not to ensure it doesn’t have these values?

Jony