summaryrefslogtreecommitdiff
path: root/tests/integration/elastictranscoder/test_layer1.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/elastictranscoder/test_layer1.py')
-rw-r--r--tests/integration/elastictranscoder/test_layer1.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/integration/elastictranscoder/test_layer1.py b/tests/integration/elastictranscoder/test_layer1.py
index ac82297c..fa2f840c 100644
--- a/tests/integration/elastictranscoder/test_layer1.py
+++ b/tests/integration/elastictranscoder/test_layer1.py
@@ -105,6 +105,11 @@ class TestETSLayer1PipelineManagement(unittest.TestCase):
self.assertEqual(response['Pipeline']['Notifications']['Error'],
topic_arn)
+ def test_list_jobs_by_pipeline(self):
+ pipeline_id = self.create_pipeline()
+ response = self.api.list_jobs_by_pipeline(pipeline_id)
+ self.assertEqual(response['Jobs'], [])
+
def test_proper_error_when_pipeline_does_not_exist(self):
with self.assertRaises(ValidationException):
self.api.read_pipeline('badpipelineid')