#1326: Add checkbox to move favorites

This commit is contained in:
Toks
2013-12-17 12:14:32 -05:00
parent 13157cecfa
commit 27c80ba621
4 changed files with 33 additions and 19 deletions

View File

@@ -183,24 +183,30 @@ class PostTest < ActiveSupport::TestCase
context "Deleting a post with" do
context "a parent" do
should "not reset the has_children flag of the parent" do
should "not reassign favorites to the parent by default" do
p1 = FactoryGirl.create(:post)
c1 = FactoryGirl.create(:post, :parent_id => p1.id)
c1.delete!
p1.reload
assert_equal(true, p1.has_children?)
end
should "not reassign favorites to the parent" do
p1 = FactoryGirl.create(:post)
c1 = FactoryGirl.create(:post, :parent_id => p1.id)
user = FactoryGirl.create(:user)
c1 = FactoryGirl.create(:post, :parent_id => p1.id, :score => 1)
user = FactoryGirl.create(:gold_user)
c1.add_favorite!(user)
c1.delete!
p1.reload
assert(Favorite.exists?(:post_id => c1.id, :user_id => user.id))
assert(!Favorite.exists?(:post_id => p1.id, :user_id => user.id))
assert_equal(0, c1.score)
assert_equal(2, c1.score)
assert_equal(0, p1.score)
end
should "reassign favorites to the parent if specified" do
p1 = FactoryGirl.create(:post)
c1 = FactoryGirl.create(:post, :parent_id => p1.id, :score => 1)
user = FactoryGirl.create(:gold_user)
c1.add_favorite!(user)
c1.delete!(:move_favorites => true)
p1.reload
assert(!Favorite.exists?(:post_id => c1.id, :user_id => user.id), "Child should not still have favorites")
assert(Favorite.exists?(:post_id => p1.id, :user_id => user.id), "Parent should have favorites")
assert_equal(1, c1.score)
assert_equal(1, p1.score)
end
should "not update the parent's has_children flag" do