Code Monkey home page Code Monkey logo

Comments (5)

CodingAnarchy avatar CodingAnarchy commented on August 26, 2024 1

@floehopper Yeah, I meant to mock Foo#bar there. Thanks for catching that.

Your example does demonstrate the issue I ran into though, so I think you've got it spot on in the replication.

from mocha.

floehopper avatar floehopper commented on August 26, 2024 1

Released in v2.3.0.

from mocha.

floehopper avatar floehopper commented on August 26, 2024

@CodingAnarchy

Thanks for reporting this. It looks as if you've made a mistake in your examples - I imagine you intended to mock & call Foo.bar from the testx, but instead you are mocking and calling Mock#bar. Anyway, that doesn't take away from the fact that there seems to be an issue with the nested is_a parameter matcher - "nested", because I believe the kwargs are treated as a Hash internally. I've tried to more clearly illustrate the problem below - let me know if I've missed the mark:

require "bundler/setup"
require "minitest/autorun"
require "mocha/minitest"
require "mocha/mock"

class FooTest < Minitest::Test
  def setup
    @mock = mock("foo")
  end

  def test_mocking_positional_args
    @mock.expects(:bar).with(1, 2, 3)

    @mock.bar(1, 2, 3)
  end

  def test_mocking_positional_args_with_nested_matcher
    @mock.expects(:bar).with(1, 2, is_a(Integer))

    @mock.bar(1, 2, 3)
  end

  def test_mocha_mocking_kw_args
    @mock.expects(:bar).with(a: 1, b: 2, c: 3)

    @mock.bar(a: 1, b: 2, c: 3)
  end

  def test_mocha_mocking_kw_args_with_nested_matcher
    @mock.expects(:bar).with(a: 1, b: 2, c: is_a(Integer))

    @mock.bar(a: 1, b: 2, c: 3)
    # unexpected invocation: #<Mock:foo>.bar(:a => 1, :b => 2, :c => 3)
    # unsatisfied expectations:
    # - expected exactly once, invoked never: #<Mock:foo>.bar(:a => 1, :b => 2, :c => is_a(Integer))
  end
end

from mocha.

floehopper avatar floehopper commented on August 26, 2024

I think I've worked out what the problem is. I'm in a bit of a rush (on a train!), but I've pushed up a tentative fix in this branch. If you're in a position to try this out, that would be brilliant. I'm in meetings most of today, but I'll try to work up a full fix as soon as I can. Thanks so much for reporting the problem - I'm somewhat surprised nobody has spotted it sooner!

from mocha.

floehopper avatar floehopper commented on August 26, 2024

I just opened this PR to fix this: #648

from mocha.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.