diff --git a/src/mailman_django/tests/tests.py b/src/mailman_django/tests/tests.py index e1034f1..10ea47b 100644 --- a/src/mailman_django/tests/tests.py +++ b/src/mailman_django/tests/tests.py @@ -194,13 +194,15 @@ >>> "All available Lists" in response.content True -The new List creation form is opened by clicking on the Button mentioned above or accessing the page directly +The new List creation form is opened by clicking on the Button mentioned above or accessing the page directly it should include a prefilled list owner field with the currently logged in user. >>> response = c.get('/lists/new/') >>> response.status_code 200 >>> print "Create a new List on" in response.content True + >>> print "james@example.com" in response.content + True Creating a new List we do need to specify at least the below mentioned items. Those were entered using some nice GUI Forms which do only show up available Values or offer you to choose a name which will be checked during validation. We're now submitting the form using a POST request and get redirected to the List Index Page