我使用此gem https://github.com/validates-email-format-of/validates_email_format_of对我的模型中的电子邮件进行了验证 如何跳过此测试的验证检查,因为这会导致速度变慢。
答案 0 :(得分:1)
为gem添加条件,因为gem有该选项。所以
validates_email_format_of :email, :message => 'is not looking good', unless: "Rails.env.test?"