diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-05-10 08:45:56 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-05-10 08:45:56 +0000 |
commit | f8a9a78ecfa50d53ca8416d296af8a02da8eb7d7 (patch) | |
tree | fa89b8059872fd51c48f2b66a7c4db59d9dc8eb0 /test | |
parent | 77e657b719f57b31002479a92d8e3a838dfa39a5 (diff) | |
download | redmine-f8a9a78ecfa50d53ca8416d296af8a02da8eb7d7.tar.gz redmine-f8a9a78ecfa50d53ca8416d296af8a02da8eb7d7.zip |
Raises 60-character limit for document titles to 255 (#12312).
git-svn-id: http://svn.redmine.org/redmine/trunk@14261 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/document_test.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/unit/document_test.rb b/test/unit/document_test.rb index 50decb7c7..52500a8eb 100644 --- a/test/unit/document_test.rb +++ b/test/unit/document_test.rb @@ -28,6 +28,13 @@ class DocumentTest < ActiveSupport::TestCase assert doc.save end + def test_create_with_long_title + title = 'x'*255 + doc = Document.new(:project => Project.find(1), :title => title, :category => DocumentCategory.first) + assert_save doc + assert_equal title, doc.reload.title + end + def test_create_should_send_email_notification ActionMailer::Base.deliveries.clear |