FIX: Broken spec

This commit is contained in:
Robin Ward 2015-07-07 11:39:44 -04:00
parent 2c14acac72
commit 6ba6a59552
1 changed files with 0 additions and 6 deletions

View File

@ -101,12 +101,6 @@ describe UserBadgesController do
it 'will trigger :user_badge_granted' do it 'will trigger :user_badge_granted' do
log_in :admin log_in :admin
# Make sure our extensibility points are triggered
# Stupid DiscourseEvent.clear doesn't work properly .. requires you to list ALL triggers in the chain!
# If there are future triggers added in the user creation chain, they need to be added anywhere you create a user and monitor ANY trigger.
# Perhaps DiscourseEvent needs a little fix so it doesn't break everything once you add a trigger in the chain.
DiscourseEvent.expects(:trigger).with(:user_created, anything).once
DiscourseEvent.expects(:trigger).with(:user_verified, anything).once
DiscourseEvent.expects(:trigger).with(:user_badge_granted, anything, anything).once DiscourseEvent.expects(:trigger).with(:user_badge_granted, anything, anything).once
xhr :post, :create, badge_id: badge.id, username: user.username xhr :post, :create, badge_id: badge.id, username: user.username
end end