Giter Site home page Giter Site logo

Unhelpful error (ArgumentError: wrong number of arguments (1 for 0) when stubbing methods in classes that redefine public about rspec-mocks HOT 5 CLOSED

rspec avatar rspec commented on July 17, 2024
Unhelpful error (ArgumentError: wrong number of arguments (1 for 0) when stubbing methods in classes that redefine public

from rspec-mocks.

Comments (5)

dchelimsky avatar dchelimsky commented on July 17, 2024

The public method takes 0 or 1 args: http://ruby-doc.org/core/classes/Module.html#M000448, but the example you provided doesn't accept any args, and is therefore in violation of Ruby's API. If you change the example to accept var args, it works fine:

class MyClass
  def self.public(*); nil; end

  def foo; bar; end
  def bar; "bar"; end
end

describe MyClass do
  it "should do the right thing" do
    instance = MyClass.new
    instance.should_receive :bar
    instance.foo
  end
end

from rspec-mocks.

hjdivad avatar hjdivad commented on July 17, 2024

David,

First, thank you for the prompt response.

You are right about public, but my example is contrived for readability. The actual problem I ran into was in trying to test a Sinatra app.

From sinatra 1.2.0

# sinatra 1.2.0 lib/sinatra/base.rb

# lines 1267..1270
def metadef(message, &block)
  (class << self; self; end).
    send :define_method, message, &block
end


# lines 925..940 (edited for clarity)
def set(option, value=self, &block)
  # ...
  metadef(option, &value)
  metadef("#{option}?") { !!__send__(option) }
  metadef("#{option}=") { |val| metadef(option, &Proc.new{val}) }
  self
end

# line 1357
set :public, Proc.new { root && File.join(root, 'public') }

Is your position that this is a bug in Sinatra and a WONTFIX for rspec-mocks?

from rspec-mocks.

dchelimsky avatar dchelimsky commented on July 17, 2024

@hjdivad - yes, that's my position. It doesn't make sense that RSpec (or any other library) should have to check whether core Ruby APIs are in place and functioning as advertised.

from rspec-mocks.

hjdivad avatar hjdivad commented on July 17, 2024

@dchelimsky Fair enough. Thanks again.

from rspec-mocks.

jhulten avatar jhulten commented on July 17, 2024

(Commenting here for those that Google the issue)

If you do modular sinatra apps this seems to be a workaround... Let me know if you see any big issues.

    class << self
      alias_method :sinatra_public, :public
    end

    (class << self; self; end).send :define_method, :public, ::Module.instance_method(:public)

from rspec-mocks.

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.