ruby – rails rspec – 如何检查模型常量?

前端之家收集整理的这篇文章主要介绍了ruby – rails rspec – 如何检查模型常量?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我怎么能这样做:
it { should have_constant(:FIXED_LIST) }

在我的模型(活动记录)中,我有FIXED_LIST =’A String’

它不是db属性方法,我无法使用responds_to或has_attribute来测试它(它们失败).我可以用什么来检查它. – 顺便说一下我安装了shoulda-matchers.

解决方法

根据David Chelimsky的回答,我通过略微修改他的代码来实现这一点.

文件spec / support / utilities.rb(或spec / support中的其他一些文件)中,您可以放置​​:

RSpec::Matchers.define :have_constant do |const|
  match do |owner|
    owner.const_defined?(const)
  end
end

注意使用“RSpec :: Matchers.define”而不是“matchers”

这允许测试规范中的常量,例如:

it "should have a fixed list constant" do
    YourModel.should have_constant(:FIXED_LIST)
 end

注意使用“have_constant”而不是“have_const”

原文链接:https://www.f2er.com/ruby/271125.html

猜你在找的Ruby相关文章