blob: 9188174368e4d7af0a0713fe00be80576714ccae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
from fixtures import api
def test_editor_update(api):
editor_id = api.editor_id
orig = api.get_editor(editor_id)
newer = api.get_editor(editor_id)
newer.username = "temp-bogus-username"
api.update_editor(editor_id, newer)
check = api.get_editor(editor_id)
assert check.username != orig.username
assert check.editor_id == orig.editor_id
api.update_editor(editor_id, orig)
check = api.get_editor(editor_id)
assert check == orig
|