FIX: Resend activation email was busted

This commit is contained in:
Robin Ward
2014-08-28 12:07:13 -04:00
parent aed0285bc6
commit c9262a8390
3 changed files with 7 additions and 8 deletions

View File

@@ -942,11 +942,7 @@ describe UsersController do
describe 'send_activation_email' do
context 'for an existing user' do
let(:user) { Fabricate(:user) }
before do
UsersController.any_instance.stubs(:fetch_user_from_params).returns(user)
end
let(:user) { Fabricate(:user, active: false) }
context 'with a valid email_token' do
it 'should send the activation email' do