13 lines
284 B
Django/Jinja
13 lines
284 B
Django/Jinja
"""Unit tests for {{ escaped_service }}-supported APIs."""
|
|
import boto3
|
|
|
|
import sure # noqa # pylint: disable=unused-import
|
|
from moto import mock_{{ escaped_service }}
|
|
|
|
|
|
@mock_{{ escaped_service }}
|
|
def test_list():
|
|
"""Test input/output of the list API."""
|
|
# do test
|
|
pass
|