diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2019-12-04 06:06:21 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2019-12-04 06:06:21 +0000 |
commit | d07169c8ae0ebad0f23d03f01aeaf9acfa7e02d1 (patch) | |
tree | 3b92b7bd3b87929107630943a72440207c7c32de /doc/development/testing_guide | |
parent | 6377f3e2a7f9ac2fef10618ac4c523091eff82c0 (diff) | |
download | gitlab-ce-d07169c8ae0ebad0f23d03f01aeaf9acfa7e02d1.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/testing_guide')
-rw-r--r-- | doc/development/testing_guide/end_to_end/resources.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/development/testing_guide/end_to_end/resources.md b/doc/development/testing_guide/end_to_end/resources.md index 1e32db4f633..b8a093c54c6 100644 --- a/doc/development/testing_guide/end_to_end/resources.md +++ b/doc/development/testing_guide/end_to_end/resources.md @@ -44,6 +44,9 @@ create the resource via the public GitLab API: - `#api_post_path`: The `POST` path to create a new resource. - `#api_post_body`: The `POST` body (as a Ruby hash) to create a new resource. +> Be aware that many API resources are [paginated](../../../api/README.md#pagination). +> If you don't find the results you expect, check if there is more that one page of results. + Let's take the `Shirt` resource class, and add these three API methods: ```ruby |