Skip to content

Instantly share code, notes, and snippets.

@dnaber-de
Created February 8, 2016 15:44
Show Gist options
  • Save dnaber-de/3c0c36603fee173b0fa5 to your computer and use it in GitHub Desktop.
Save dnaber-de/3c0c36603fee173b0fa5 to your computer and use it in GitHub Desktop.
Approach on Monkey::action expects different values on consecutive calls
<?php
Brain\Monkey::actions()
->expectFired( 'do_something' )
->twice()
->withArgs(
[
'first',
'second'
]
);
do_action( 'do_something', 'first' );
do_action( 'do_something', 'second' );
//Mockery\Exception\NoMatchingExpectationException: No matching handler found for Mockery_0__do_do_something::do_action_do_something("first"). Either the method was unexpected or its arguments matched no expected argument list for this method
@dnaber-de
Copy link
Author

Thanks a lot, Giuseppe!

This is possible for normal objects, if it does not work, it is a Brain Monkey bug: an issue would be much appreciated.
I'll figure out and will create an issue if there's one.

Yes, currently went with something like

Brain\Monkey::actions()
    ->expectFired( 'do_something' )
    ->twice()
    ->with( Mockery::on( function( $arg ) {
        // test $arg here
        return TRUE;
    } ) );

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment