Fixed: news comments not deleted when deleting a project (#7904).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5176 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2011-03-20 20:26:59 +00:00 committed by Eric Davis
parent 07e2c652d5
commit 1d93b0e9f6
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ class Project < ActiveRecord::Base
has_many :time_entries, :dependent => :delete_all
has_many :queries, :dependent => :delete_all
has_many :documents, :dependent => :destroy
has_many :news, :dependent => :delete_all, :include => :author
has_many :news, :dependent => :destroy, :include => :author
has_many :issue_categories, :dependent => :delete_all, :order => "#{IssueCategory.table_name}.name"
has_many :boards, :dependent => :destroy, :order => "position ASC"
has_one :repository, :dependent => :destroy

View File

@ -205,7 +205,7 @@ class ProjectTest < ActiveSupport::TestCase
assert_equal 0, Repository.count
assert_equal 0, Changeset.count
assert_equal 0, Change.count
#assert_equal 0, Comment.count
assert_equal 0, Comment.count
assert_equal 0, TimeEntry.count
assert_equal 0, Version.count
assert_equal 0, Watcher.count