Итак, я испытывал то же самое. Я пытался проверить свои почтовые программы без загрузки всех Rails.
Что решило мою проблему, так это добавление в мой тест:
(обратите внимание, что мой тест находится в test / unit / mailers / my_mailer_test.rb - возможно, вам придется изменить пути)
ActionMailer::Base.delivery_method = :test
ActionMailer::Base.view_paths = File.expand_path('../../../../app/views', __FILE__)
По сути, без путей просмотра, указывающих на каталог представлений, шаблон не найден, и все части (html, текст и т. Д.) Пусты.
ПРИМЕЧАНИЕ. Указанный каталог НЕ является тем, в котором находятся фактические шаблоны. Почтовик знает, как искать каталог в корне шаблона, названного в честь самого класса.
Вот пример в minitest / spec
require 'minitest/spec'
require 'minitest/autorun'
require "minitest-matchers"
require 'action_mailer'
require "email_spec"
# NECESSARY TO RECOGNIZE HAML TEMPLATES
unless Object.const_defined? 'Rails'
require 'active_support/string_inquirer'
class Rails
def self.env
ActiveSupport::StringInquirer.new(ENV['RAILS_ENV'] || 'test')
end
end
require 'haml/util'
require "haml/template"
end
# END HAML SUPPORT STUFF
require File.expand_path('../../../../app/mailers/my_mailer', __FILE__)
ActionMailer::Base.delivery_method = :test
ActionMailer::Base.view_paths = File.expand_path('../../../../app/views', __FILE__)
describe MyMailer do
include EmailSpec::Helpers
include EmailSpec::Matchers
let(:the_email){ MyMailer.some_mail() }
it "has the right bit of text" do
the_email.must have_body_text("some bit of text")
end
end