﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
18973	Tests fail with login signal receiver which posts messages	Mitar	nobody	"I have login signal receiver which posts a message:

{{{
@dispatch.receiver(auth_signals.user_logged_in)
def user_login_message(sender, request, user, **kwargs):
    messages.success(request, _(""You have been successfully logged in.""))
}}}

And in tests I want to create an authenticated client:

{{{
self.client = client.Client()
self.client.login(username=self.user_username, password=self.user_password)
}}}

But this fails as messages framework is not enabled at that point in the code."	Bug	closed	Testing framework	1.4	Normal	duplicate		mmitar@…	Unreviewed	0	0	0	0	0	0
