【发布时间】:2018-08-10 10:32:05
【问题描述】:
我有一个像这样的Post 模型:
class Post < ApplicationRecord
has_attached_file :image,
styles: { large: "500X500",
medium: "300x300>",
thumb: "100x100#" }
validates_attachment_content_type :image, content_type: /\Aimage\/.*\z/
end
【问题讨论】:
-
回形针不是已经测试了吗?
-
我不知道,但我需要使用 rspec 定义测试用例
-
@JagdeepSingh 我需要在工厂提供什么
标签: ruby-on-rails ruby rspec