~allanlesage/uci-engine/coverage-extractor

« back to all changes in this revision

Viewing changes to tests/test_image_builder.py

Merge with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
 
18
18
import unittest
19
 
 
20
 
 
21
19
import deployers
22
20
 
23
21
 
24
22
class TestImageBuilder(deployers.DeployerTest):
25
23
    """Integration tests for image builder service run on a juju deployment"""
26
24
 
27
 
    deployer_cfgs = ['image-builder.yaml']
28
 
 
29
25
    def test_worker_running(self):
30
26
        '''ensure the rabbit worker is deployed and running'''
31
 
        self.assert_job_running('ci_airline_imagebuild_worker',
32
 
                                'ci-airline-imagebuild-worker')
 
27
        self.assert_job_running('ci-airline-imagebuild-worker')
33
28
 
34
29
 
35
30
if __name__ == "__main__":