我正在尝试建立一个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测试以验证附件类型。预先感谢。