12 lines
172 B
Plaintext
12 lines
172 B
Plaintext
|
from __future__ import unicode_literals
|
||
|
|
||
|
import boto3
|
||
|
import sure # noqa
|
||
|
from moto import mock_{{ service }}
|
||
|
|
||
|
|
||
|
@mock_{{ service }}
|
||
|
def test_list():
|
||
|
# do test
|
||
|
pass
|