32 lines
711 B
Python
32 lines
711 B
Python
|
from __future__ import unicode_literals
|
||
|
|
||
|
import sure # noqa
|
||
|
|
||
|
import moto.server as server
|
||
|
from moto import mock_medialive
|
||
|
|
||
|
"""
|
||
|
Test the different server responses
|
||
|
"""
|
||
|
|
||
|
|
||
|
@mock_medialive
|
||
|
def test_medialive_list_channels():
|
||
|
backend = server.create_backend_app("medialive")
|
||
|
test_client = backend.test_client()
|
||
|
|
||
|
res = test_client.get("/prod/channels")
|
||
|
result = res.data.decode("utf-8")
|
||
|
result.should.contain('"channels": []')
|
||
|
|
||
|
|
||
|
@mock_medialive
|
||
|
def test_medialive_list_inputs():
|
||
|
backend = server.create_backend_app("medialive")
|
||
|
test_client = backend.test_client()
|
||
|
|
||
|
res = test_client.get("/prod/inputs")
|
||
|
|
||
|
result = res.data.decode("utf-8")
|
||
|
result.should.contain('"inputs": []')
|