diff options
Diffstat (limited to 'test/unit/document_test.rb')
-rw-r--r-- | test/unit/document_test.rb | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/test/unit/document_test.rb b/test/unit/document_test.rb index 02ae94dd0..9e76311bd 100644 --- a/test/unit/document_test.rb +++ b/test/unit/document_test.rb @@ -18,7 +18,7 @@ require File.dirname(__FILE__) + '/../test_helper' class DocumentTest < ActiveSupport::TestCase - fixtures :projects, :enumerations, :documents + fixtures :projects, :enumerations, :documents, :attachments def test_create doc = Document.new(:project => Project.find(1), :title => 'New document', :category => Enumeration.find_by_name('User documentation')) @@ -43,4 +43,16 @@ class DocumentTest < ActiveSupport::TestCase assert_equal e, doc.category assert doc.save end + + def test_updated_on_with_attachments + d = Document.find(1) + assert d.attachments.any? + assert_equal d.attachments.map(&:created_on).max, d.updated_on + end + + def test_updated_on_without_attachments + d = Document.find(2) + assert d.attachments.empty? + assert_equal d.created_on, d.updated_on + end end |