﻿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
6521	"add a ""name"" parameter to test client get() and post() methods"	Will Hardy	nobody	"Allow named url patterns to be entered directly into the test client's `get()` and `post()` methods for the sake of readability and to encourage use of named url paths.
For example, instead of:

{{{
        url = reverse('poll_edit', args=(24,))
        response = client.get(url)
}}}
It would become:
{{{
        response = client.get(name='poll_edit', args=(24,))
}}}

This may of course conflict with the direct passing of extra header information to `get()` and `post()`
"		closed	Testing framework	dev		wontfix			Design decision needed	0	0	0	0	0	0
