Started on batch
This commit is contained in:
parent
b17136e36c
commit
bba6d23eae
6 changed files with 73 additions and 0 deletions
11
tests/test_batch/test_batch.py
Normal file
11
tests/test_batch/test_batch.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
import boto3
|
||||
import sure # noqa
|
||||
from moto import mock_batch
|
||||
|
||||
|
||||
@mock_batch
|
||||
def test_list():
|
||||
# do test
|
||||
pass
|
||||
16
tests/test_batch/test_server.py
Normal file
16
tests/test_batch/test_server.py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
import sure # noqa
|
||||
|
||||
import moto.server as server
|
||||
from moto import mock_batch
|
||||
|
||||
'''
|
||||
Test the different server responses
|
||||
'''
|
||||
|
||||
@mock_batch
|
||||
def test_batch_list():
|
||||
backend = server.create_backend_app("batch")
|
||||
test_client = backend.test_client()
|
||||
# do test
|
||||
Loading…
Add table
Add a link
Reference in a new issue