命名空间
方法
包含的模块
- ActiveSupport::Testing::ConstantLookup
- ActionMailer::TestHelper
- Rails::Dom::Testing::Assertions::SelectorAssertions
- Rails::Dom::Testing::Assertions::DomAssertions
实例公共方法
read_fixture(action) 链接
读取给定邮件的 fixture 文件。
这在测试邮件时很有用,因为它允许将电子邮件正文写入 fixture 中。有关具体示例,请参阅测试指南:guides.rubyonrails.org/testing.html#revenge-of-the-fixtures
源代码:显示 | 在 GitHub 上
# 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