Add vault operations.
This commit is contained in:
parent
b296294086
commit
7156df1a63
9 changed files with 208 additions and 0 deletions
21
tests/test_glacier/test_glacier_server.py
Normal file
21
tests/test_glacier/test_glacier_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).should.equal({u'Marker': None, u'VaultList': []})
|
||||
Loading…
Add table
Add a link
Reference in a new issue