1 mail.test MailTestCase::testPluggableFramework()

Assert that the pluggable mail system is functional.

File

core/modules/simpletest/tests/mail.test, line 25
Test the Backdrop mailing system.

Class

MailTestCase
@file Test the Backdrop mailing system.

Code

function testPluggableFramework() {
  global $language;

  // Use MailTestCase for sending a message.
  $message = backdrop_mail('simpletest', 'mail_test', 'testing@example.com', $language);

  // Assert whether the message was sent through the send function.
  $this->assertEqual(self::$sent_message['to'], 'testing@example.com', 'Pluggable mail system is extendable.');
}