Methods
W
Instance Public methods
welcome()
# File actionmailer/test/base_test.rb, line 279
def welcome
  attachments['invoice.pdf'] = 'This is test File content'
  mail body: "yay", from: "welcome@example.com", to: "to@example.com"

  unless attachments.map(&:filename) == ["invoice.pdf"]
    raise Minitest::Assertion, "Should allow access to attachments"
  end
end