RSpec:如何在提交表单时编写用于附件验证的测试?

时间:2019-07-08 12:19:47

标签: ruby-on-rails rspec

我正在尝试建立一个RSpec测试,以验证表单中附件的内容类型。

has_attached_file :file_1
validates_attachment :file_1 content_type:
  { content_type: ["image/jpeg", "image/gif", "image/png", "image/jpg", 
    "video/mp4", "video/mov", "application/pdf"] }

我已经尝试过了,但是作为未定义的方法“ allow_content_types”,它给了我错误

it { is_expected.to allow_content_types("image/png", "image/jpeg").for(:file_1) }

如何编写RSpec测试以验证附件类型。预先感谢。

0 个答案:

没有答案