summaryrefslogtreecommitdiff
path: root/src/mailman/model/tests/test_user.py
Commit message (Collapse)AuthorAgeFilesLines
* Bump copyright years.Barry Warsaw2017-01-041-1/+1
|
* Clean up the User.absorb() method and tests.Barry Warsaw2016-05-141-85/+130
|
* Fix Flake8 errorsAurélien Bompard2016-05-041-3/+9
|
* Implement suggestions from the reviewAurélien Bompard2016-05-041-8/+19
|
* Delete redundant memberships before deleting the absorbed userAurélien Bompard2016-05-041-0/+5
|
* Sort importsAurélien Bompard2016-05-041-1/+1
|
* Add a method to merge a user into another userAurélien Bompard2016-05-041-0/+114
|
* Clean up the model and languages directories.Barry Warsaw2016-03-251-6/+0
|
* Add a set_preferred() helper.Barry Warsaw2016-02-061-4/+2
| | | | | This refactors the setting of a user's preferred address to the first in their list of linked addresses.
* Happy New Year.Barry Warsaw2016-01-021-1/+1
|
* * When deleting a user object, make sure their preferences are also deleted.Barry Warsaw2015-03-201-6/+26
|\ | | | | | | Given by Abhishek. (LP: #1418276)
| * * When deleting a user object, make sure their preferences are also deleted.Barry Warsaw2015-03-201-6/+24
|/ | | | Given by Abhishek. (LP: #1418276)
* Bump copyright years.Barry Warsaw2015-01-041-1/+1
|
* Remove huge amounts of now unnecessary file boilerplate.Barry Warsaw2014-12-221-3/+0
|
* All model tests except for pendings.rst is passing now.Barry Warsaw2014-12-131-2/+1
|
* More model test fixes and ports.Barry Warsaw2014-12-131-0/+38
|
* Use print functions consistently through, and update all __future__ imports toBarry Warsaw2014-04-281-1/+1
| | | | | | | | reflect this. Also, mock out sys.stderr on some tests so that their nose2 output is quieter. A few other minor coding style consistencies.
* Bump copyright years.Barry Warsaw2014-01-011-1/+1
|
* Bump copyright years.Barry Warsaw2013-01-011-1/+1
|
* Clean up of style test code, along with refactoring of corner cases toBarry Warsaw2012-03-121-0/+3
| | | | unittests where they belong.
* copybumpBarry Warsaw2012-01-011-1/+1
|
* Remove extraneous `test_suite()` functions. zope.testrunner willBarry Warsaw2011-10-301-8/+0
| | | | | | | | | automatically do the right thing in most cases. Keep test_suite() in test_documentation.py since these dynamically set up docs tests properly. Refactor test_passwords.py so that base class tests aren't bogusly run. Also, remove test_membership.py which was essentially disabled because it was testing the MM2 membership API.
* Send event notifications whenever a mailing list is created or deleted.Barry Warsaw2011-08-161-2/+2
|
* * Move members.txt corner cases to unittests.Barry Warsaw2011-04-201-1/+0
| | | | | | | * Fix a case in a list's /members API where the listname is bogus. * Catch NotAMemberError form delete_member() and return not_found. * Refactor REST helpers so that call_api() can be used in unittests without doing any prints to stdout.
* Add some tests to ensure that the correct number of members are returned whenBarry Warsaw2011-04-171-0/+82
users are subscribed with their preferred addresses.