summaryrefslogtreecommitdiffstats
path: root/test/unit/project_copy_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/project_copy_test.rb')
-rw-r--r--test/unit/project_copy_test.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/unit/project_copy_test.rb b/test/unit/project_copy_test.rb
index 9352c0d04..05d5d2e4d 100644
--- a/test/unit/project_copy_test.rb
+++ b/test/unit/project_copy_test.rb
@@ -51,6 +51,14 @@ class ProjectCopyTest < ActiveSupport::TestCase
assert_equal false, project.copy(@source_project)
end
+ test "#copy should copy project attachments" do
+ Attachment.create!(:container => @source_project, :file => uploaded_test_file("testfile.txt", "text/plain"), :author_id => 1)
+ assert @project.copy(@source_project)
+
+ assert_equal 1, @project.attachments.count, "Attachment not copied"
+ assert_equal "testfile.txt", @project.attachments.first.filename
+ end
+
test "#copy should copy issues" do
@source_project.issues << Issue.generate!(:status => IssueStatus.find_by_name('Closed'),
:subject => "copy issue status",