django-test-plus
django-test-plus copied to clipboard
`assertGoodView` seems to expect an `url_name` as param but it never reverses it
The current signature of assertGoodView
looks like this:
def assertGoodView(self, url_name, *args, **kwargs):
but the implementation never reverse
s the url_name
param so a valid url name results in a 404 instead of a 400.