summaryrefslogtreecommitdiff
path: root/gitlab/tests/test_manager.py
Commit message (Collapse)AuthorAgeFilesLines
* Drop API v3 supportGauvain Pocentek2018-05-191-309/+0
| | | | Drop the code, the tests, and update the documentation.
* Default to API v4Gauvain Pocentek2018-02-051-1/+2
|
* update copyright yearsGauvain Pocentek2017-05-241-1/+1
|
* Reorganise the code to handle v3 and v4 objectsGauvain Pocentek2017-05-231-1/+1
| | | | | | Having objects managing both versions will only make the code more complicated, with lots of tests everywhere. This solution might generate some code duplication, but it should be maintainable.
* Add 'search' attribute to projects.list()Gauvain Pocentek2017-05-231-3/+3
| | | | projects.search() has been deprecated by Gitlab
* define UserManager.get_by_username() to get a user by usernameRichard Hansen2016-02-121-0/+26
|
* define UserManager.search() to search for usersRichard Hansen2016-02-121-0/+23
|
* add unit tests for managersGauvain Pocentek2016-01-161-3/+23
|
* Add support for groups searchGauvain Pocentek2016-01-091-0/+23
| | | | | | | Factorize the code to avoid duplication with the ProjectManager class. Implement unit tests for the group search. Original patchh from Daniel Serodio (PR #55).
* Implement ProjectManager search/list methodsGauvain Pocentek2016-01-081-0/+69
| | | | | | The existing Gitlab methods are deprecated. Unit tests have been added.
* add unit tests for BaseManagerGauvain Pocentek2016-01-031-0/+147