List dependencies for services - add integration test to verify
This commit is contained in:
parent
9f0f230d13
commit
db1d7123f6
41 changed files with 1405 additions and 1245 deletions
21
tests/test_glacier/test_server.py
Normal file
21
tests/test_glacier/test_server.py
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
import json
|
||||
import sure # noqa
|
||||
|
||||
import moto.server as server
|
||||
from moto import mock_glacier
|
||||
|
||||
"""
|
||||
Test the different server responses
|
||||
"""
|
||||
|
||||
|
||||
@mock_glacier
|
||||
def test_list_vaults():
|
||||
backend = server.create_backend_app("glacier")
|
||||
test_client = backend.test_client()
|
||||
|
||||
res = test_client.get("/1234bcd/vaults")
|
||||
|
||||
json.loads(res.data.decode("utf-8")).should.equal({"Marker": None, "VaultList": []})
|
||||
Loading…
Add table
Add a link
Reference in a new issue