当前位置:  开发笔记 > Android > 正文

使用shoulda-matchers检查枚举值时出错

如何解决《使用shoulda-matchers检查枚举值时出错》经验,为你挑选了0个好方法。

在我的device模型中,我有

enum device_type: { ios: 1 , android: 2 }
validates :device_type, presence: true, inclusion: { in: device_types.keys }

在我看来device_spec.rb,我为此写了一些测试

describe 'validations' do
  subject { FactoryGirl.build(:device) }

  it { is_expected.to allow_values('ios', 'android').for(:device_type) }
  it { is_expected.to validate_inclusion_of(:device_type).in_array(%w(ios android)) }
  it { is_expected.not_to allow_value('windows').for(:device_type) }
end

当我运行rspec时,测试allow_values('ios', 'android')通过,但其余两个都失败了.

1)设备应确保在["ios","android"]中包含device_type

失败/错误:它{is_expected.to validate_inclusion_of(:device_type).in_array(%w(ios android))}

 ArgumentError:
   '123456789' is not a valid device_type

2)设备不应允许将device_type设置为"windows"

失败/错误:{is_expected.not_to allow_value('windows').for(:device_type)}

 ArgumentError:
   'windows' is not a valid device_type

"它不是有效的device_type"是正确的,但为什么这些测试失败了?

推荐阅读
360691894_8a5c48
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有