Class: UserMailerTest

Inherits:
Test::Unit::TestCase
  • Object
show all
Includes:
ActionMailer::Quoting
Defined in:
vendor/plugins/authentication/test/unit/user_mailer_test.rb

Constant Summary collapse

FIXTURES_PATH =
File.dirname(__FILE__) + '/../fixtures'
CHARSET =
"utf-8"

Instance Method Summary collapse

Instance Method Details

#setupObject



10
11
12
13
14
15
16
17
# File 'vendor/plugins/authentication/test/unit/user_mailer_test.rb', line 10

def setup
  ActionMailer::Base.delivery_method = :test
  ActionMailer::Base.perform_deliveries = true
  ActionMailer::Base.deliveries = []

  @expected = TMail::Mail.new
  @expected.set_content_type "text", "plain", { "charset" => CHARSET }
end

#test_dummy_testObject



19
20
21
# File 'vendor/plugins/authentication/test/unit/user_mailer_test.rb', line 19

def test_dummy_test
  #do nothing
end