我在我的rails项目的Gemfile中更新了’shoulda-matchers’,从版本1.4.2升级到2.0.0,现在当我运行我的rspec测试时,它给了我以下错误
undefined method `assign_to' for #<RSpec::Core::ExampleGroup::Nested_4::Nested_1::Nested_4::Nested_1:0x007fc96eaaaf48>
解决方法
是的,以下方法在版本1.5.0中已弃用,并在版本2.0.0的shoulda-matcher中删除.
> assign_to
> respond_with_content_type
> query_the_database
> validate_format_of
> have_sent_email
> permit(强参数匹配器)
> delegate_method
如果您当前正在使用这些方法,开发人员建议以其他方式测试代码.
有关更改的简短列表,您可以访问https://github.com/thoughtbot/shoulda-matchers/blob/master/NEWS.md#v-200.
有关更改的详细列表以及删除这些方法的原因,您可以访问他们的博客http://robots.thoughtbot.com/post/47031676783/shoulda-matchers-2-0.