make compatible tests

This commit is contained in:
Nickolai Novik 2017-03-22 00:10:14 +02:00
parent 6e4355ce3c
commit d652f29df5
2 changed files with 4 additions and 4 deletions

View File

@ -94,14 +94,14 @@ def test_forget(loop, test_client):
client = yield from test_client(app)
resp = yield from client.post('/login')
assert 200 == resp.status
assert resp.url.endswith('/')
assert str(resp.url).endswith('/')
cookies = client.session.cookie_jar.filter_cookies(
client.make_url('/'))
assert 'Andrew' == cookies['AIOHTTP_SECURITY'].value
yield from resp.release()
resp = yield from client.post('/logout')
assert 200 == resp.status
assert resp.url.endswith('/')
assert str(resp.url).endswith('/')
cookies = client.session.cookie_jar.filter_cookies(
client.make_url('/'))
assert 'AIOHTTP_SECURITY' not in cookies

View File

@ -116,14 +116,14 @@ def test_forget(make_app, test_client):
resp = yield from client.post('/login')
assert 200 == resp.status
assert resp.url.endswith('/')
assert str(resp.url).endswith('/')
txt = yield from resp.text()
assert 'Andrew' == txt
yield from resp.release()
resp = yield from client.post('/logout')
assert 200 == resp.status
assert resp.url.endswith('/')
assert str(resp.url).endswith('/')
txt = yield from resp.text()
assert '' == txt
yield from resp.release()