issues
search
dgollahon
/
rspectre
Exorcise the apparitions haunting your tests.
MIT License
75
stars
10
forks
source link
Find block-pass nodes correctly
#76
Closed
dgollahon
closed
1 year ago
dgollahon
commented
1 year ago
We prefer finding
block
nodes because they wrap the
send
. There are cases, however, like with a block pass where we actually do want the
send
. So we can just search for
block
nodes and, if we don't find a match, search for
send
as a fallback.
Closes #60
block
nodes because they wrap thesend
. There are cases, however, like with a block pass where we actually do want thesend
. So we can just search forblock
nodes and, if we don't find a match, search forsend
as a fallback.