class AnotherTestHelperMailerTest

Public Instance Methods

setup() click to toggle source
# File actionmailer/test/test_helper_test.rb, line 215
def setup
  @test_var = "a value"
end
test_setup_shouldnt_conflict_with_mailer_setup() click to toggle source
# File actionmailer/test/test_helper_test.rb, line 219
def test_setup_shouldnt_conflict_with_mailer_setup
  assert_kind_of Mail::Message, @expected
  assert_equal "a value", @test_var
end