Skip to content
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

Prepended modules cause spy to think a method has never been hooked #7

Open
sgrif opened this issue Aug 29, 2016 · 3 comments
Open

Comments

@sgrif
Copy link

sgrif commented Aug 29, 2016

Steps to reproduce:

class Foo
  class << self
    prepend Bar
  end

  def self.foo
  end
end

module Bar
  def foo
  end
end

class Test < MiniTest::Test
  def test_stuff
    Spy.on(Foo, :bar)
  end
end

Spy will continuously complain that Foo.bar hasn't been hooked, and will continue to do so for every subsequent test run as it continuously tries to unhook the method.

@ryanong
Copy link
Owner

ryanong commented Aug 29, 2016

oooo, yea haven't tested this in 2.3 at all yet and .prepend I'll see if I can make some time soon to get it working.

@sgrif
Copy link
Author

sgrif commented Aug 29, 2016

Pretend was actually in 2.0. ;)

On Mon, Aug 29, 2016, 4:00 PM Ryan Ong [email protected] wrote:

oooo, yea haven't tested this in 2.3 at all yet and .prepend I'll see if
I can make some time soon to get it working.


You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
#7 (comment), or mute
the thread
https://github.com/notifications/unsubscribe-auth/ABdWK7MmlaNaWrhOVFmh5va5VzR6vYdHks5qkzpVgaJpZM4Jvmhf
.

@sgrif
Copy link
Author

sgrif commented Aug 29, 2016

Prepend* damn autocorrect

On Mon, Aug 29, 2016, 4:23 PM Sean Griffin [email protected]
wrote:

Pretend was actually in 2.0. ;)

On Mon, Aug 29, 2016, 4:00 PM Ryan Ong [email protected] wrote:

oooo, yea haven't tested this in 2.3 at all yet and .prepend I'll see if
I can make some time soon to get it working.


You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
#7 (comment), or mute
the thread
https://github.com/notifications/unsubscribe-auth/ABdWK7MmlaNaWrhOVFmh5va5VzR6vYdHks5qkzpVgaJpZM4Jvmhf
.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants