remove trailing white-spaces from test/unit/issue_nested_set_test.rb.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6750 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
a2402bf9ee
commit
372292fc26
|
@ -252,14 +252,14 @@ class IssueNestedSetTest < ActiveSupport::TestCase
|
|||
root = Issue.find(root.id)
|
||||
assert root.leaf?, "Root issue is not a leaf (lft: #{root.lft}, rgt: #{root.rgt})"
|
||||
end
|
||||
|
||||
|
||||
def test_destroy_issue_with_grand_child
|
||||
parent = create_issue!
|
||||
issue = create_issue!(:parent_issue_id => parent.id)
|
||||
child = create_issue!(:parent_issue_id => issue.id)
|
||||
grandchild1 = create_issue!(:parent_issue_id => child.id)
|
||||
grandchild2 = create_issue!(:parent_issue_id => child.id)
|
||||
|
||||
|
||||
assert_difference 'Issue.count', -4 do
|
||||
Issue.find(issue.id).destroy
|
||||
parent.reload
|
||||
|
|
Loading…
Reference in New Issue