summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2009-11-26 20:12:20 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2009-11-26 20:12:20 +0000
commit43fd27fd0ce4111501c36a6ef162aed61bf3318c (patch)
tree6a805a37c06baaba9a1c2935f32b22e6bca2cafb /test
parentf3bcb705f74622afae785d9df793a0bbed3a11d3 (diff)
downloadredmine-43fd27fd0ce4111501c36a6ef162aed61bf3318c.tar.gz
redmine-43fd27fd0ce4111501c36a6ef162aed61bf3318c.zip
Show last update datetime (last attachment added) on document list (#4232).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3095 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r--test/fixtures/attachments.yml14
-rw-r--r--test/fixtures/documents.yml9
-rw-r--r--test/unit/document_test.rb14
3 files changed, 34 insertions, 3 deletions
diff --git a/test/fixtures/attachments.yml b/test/fixtures/attachments.yml
index 62d5b38a1..c6493bd5e 100644
--- a/test/fixtures/attachments.yml
+++ b/test/fixtures/attachments.yml
@@ -12,7 +12,7 @@ attachments_001:
filename: error281.txt
author_id: 2
attachments_002:
- created_on: 2006-07-19 21:07:27 +02:00
+ created_on: 2007-01-27 15:08:27 +01:00
downloads: 0
content_type: text/plain
disk_filename: 060719210727_document.txt
@@ -121,4 +121,16 @@ attachments_010:
filename: picture.jpg
author_id: 2
content_type: image/jpeg
+attachments_011:
+ created_on: 2007-02-12 15:08:27 +01:00
+ container_type: Document
+ container_id: 1
+ downloads: 0
+ disk_filename: 060719210727_picture.jpg
+ digest: b91e08d0cf966d5c6ff411bd8c4cc3a2
+ id: 11
+ filesize: 452
+ filename: picture.jpg
+ author_id: 2
+ content_type: image/jpeg
\ No newline at end of file
diff --git a/test/fixtures/documents.yml b/test/fixtures/documents.yml
index 137cbcc67..042b93533 100644
--- a/test/fixtures/documents.yml
+++ b/test/fixtures/documents.yml
@@ -4,4 +4,11 @@ documents_001:
title: "Test document"
id: 1
description: "Document description"
- category_id: 1 \ No newline at end of file
+ category_id: 1
+documents_002:
+ created_on: 2007-02-12 15:08:27 +01:00
+ project_id: 1
+ title: "An other document"
+ id: 2
+ description: ""
+ category_id: 2 \ No newline at end of file
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