summaryrefslogtreecommitdiff
path: root/tests/functional/api/test_wikis.py
blob: bcb5e1f8973eef44fb909a6a4024257f4a119278 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
GitLab API:
https://docs.gitlab.com/ee/api/wikis.html
"""


def test_wikis(project):
    page = project.wikis.create({"title": "title/subtitle", "content": "test content"})
    page.content = "update content"
    page.title = "subtitle"

    page.save()

    page.delete()