首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >如何存根ruby方法以确保它存在于Minitest中

如何存根ruby方法以确保它存在于Minitest中
EN

Stack Overflow用户
提问于 2019-12-14 07:59:58
回答 1查看 507关注 0票数 1

.stubs上的documentation相反,我似乎能够存根一个不存在的方法。

考虑以下代码:

代码语言:javascript
运行
复制
class DependencyClass
  def self.method_to_be_stubbed
    'hello'
  end
end

class TestMethodClass
  def self.method_being_tested
    DependencyClass.method_to_be_stubbed
  end
end

class StubbedMissingMethodTest < ActiveSupport::TestCase
  test '#method_being_tested should return value from stub' do
    assert_equal 'hello', TestMethodClass.method_being_tested

    DependencyClass.stubs(:method_to_be_stubbed).returns('goodbye')

    assert_equal 'goodbye', TestMethodClass.method_being_tested
  end
end

在本例中,DependencyClass.stubs(:method_to_be_stubbed).returns('goodbye')按预期工作,因为#method_to_be_stubbed存在于DependencyClass上。但是,如果我将#method_to_be_stubbed更改为DependencyClass的类实例方法,如下所示:

代码语言:javascript
运行
复制
class DependencyClass
  def method_to_be_stubbed
    'hello'
  end
end

class StubbedMissingMethodTest < ActiveSupport::TestCase
  test '#method_being_tested should return value from stub' do
    assert_equal 'hello', TestMethodClass.method_being_tested

    # despite the method not existing on the class,
    # instead on the instance - yet it still works?
    DependencyClass.stubs(:method_to_be_stubbed).returns('goodbye')

    assert_equal 'goodbye', TestMethodClass.method_being_tested
  end
end

我的#method_to_be_stubbed存根在DependencyClass上维护类方法,尽管它不再存在。既然被存根的方法不存在,那么.stubs调用失败的预期行为不会出现吗?

EN

回答 1

Stack Overflow用户

发布于 2019-12-14 08:10:06

因为被存根的方法不存在,所以.stubs调用不会失败,这是

的预期行为吗?

不,预期的行为不会失败。这就是为什么。你不是在截断一个方法。您正在截断对消息的响应。例如,您的代码中有下面这一行:user.name。这意味着您正在向object user发送消息age。教user处理消息age的最简单/最常见的方法是确保它有一个名为age的实例方法。但也有其他方法。您可以使用method_missing让用户对年龄做出响应。就ruby而言,这是同样有效的。

因此,minitest在这里检查方法的存在是错误的。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/59331186

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档