Displaying 1 result from an estimated 1 matches for "a_test".
Did you mean:
  _test
  
2007 Mar 30
7
problem with using any_instance
Hey all,
I have a question with using mocha in my tests.
In the same test file, I have two tests,
<code>
def test_a
  klass.any_instance.stubs(:method_name).returns("something")
  klass.new.method_name
  ...
end
def test_b
 ...
   klass.new.method_name
 ...
end
</code>
where klass is some class
when the tests run,  test _a passes, but test_b had an error like this: