Methods
S
T
Instance Public methods
setup()
# File actionmailer/test/test_helper_test.rb, line 118
def setup
  @test_var = "a value"
end
test_setup_shouldnt_conflict_with_mailer_setup()
# File actionmailer/test/test_helper_test.rb, line 122
def test_setup_shouldnt_conflict_with_mailer_setup
  assert_kind_of Mail::Message, @expected
  assert_equal 'a value', @test_var
end