跳至内容 跳至搜索
命名空间
方法
R
包含的模块

实例公共方法

read_fixture(action)

读取给定邮件的 fixture 文件。

这在测试邮件时很有用,因为它允许将电子邮件正文写入 fixture 中。有关具体示例,请参阅测试指南:guides.rubyonrails.org/testing.html#revenge-of-the-fixtures

# File actionmailer/lib/action_mailer/test_case.rb, line 82
def read_fixture(action)
  IO.readlines(File.join(Rails.root, "test", "fixtures", self.class.mailer_class.name.underscore, action))
end