summaryrefslogtreecommitdiffstats
path: root/test/unit/setting_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/setting_test.rb')
-rw-r--r--test/unit/setting_test.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/unit/setting_test.rb b/test/unit/setting_test.rb
index 5eed249f1..710d9581e 100644
--- a/test/unit/setting_test.rb
+++ b/test/unit/setting_test.rb
@@ -112,6 +112,23 @@ class SettingTest < ActiveSupport::TestCase
end
end
+ def test_mail_from_address
+ mail_from_strings = [
+ 'joe@example.com',
+ '<joe@example.com>',
+ 'Joe Bloggs <joe@example.com>',
+ 'display_name@example.com <joe@example.com>',
+ 'joe@example.com (Joe Bloggs)',
+ 'joe@example.com (display_name@example.com)'
+ ]
+
+ mail_from_strings.each do |from_value|
+ with_settings :mail_from => from_value do
+ assert_equal 'joe@example.com', Setting.mail_from_address
+ end
+ end
+ end
+
def test_setting_serialied_as_binary_should_be_loaded_as_utf8_encoded_strings
yaml = <<-YAML
---