~james-page/charms/trusty/glance/lp1531102

« back to all changes in this revision

Viewing changes to unit_tests/test_glance_relations.py

  • Committer: Liam Young
  • Date: 2015-06-04 08:44:46 UTC
  • mfrom: (117 glance)
  • mto: This revision was merged to the branch mainline in revision 118.
  • Revision ID: liam.young@canonical.com-20150604084446-xsroavxpfefmfynj
Resync le charm helpers

Show diffs side-by-side

added added

removed removed

Lines of Context:
131
131
        self.apt_update.assert_called_with(fatal=True)
132
132
        self.apt_install.assert_called_with(['haproxy', 'python-setuptools',
133
133
                                             'python-six', 'uuid',
134
 
                                             'python-mysqldb', 'python-pip',
135
 
                                             'apache2', 'libxslt1-dev',
136
 
                                             'python-psycopg2', 'zlib1g-dev',
137
 
                                             'python-dev', 'libxml2-dev'],
 
134
                                             'python-mysqldb',
 
135
                                             'libmysqlclient-dev',
 
136
                                             'libssl-dev', 'libffi-dev',
 
137
                                             'apache2', 'python-pip',
 
138
                                             'libxslt1-dev', 'libyaml-dev',
 
139
                                             'python-psycopg2',
 
140
                                             'zlib1g-dev', 'python-dev',
 
141
                                             'libxml2-dev'],
138
142
                                            fatal=True)
139
143
        self.git_install.assert_called_with(projects_yaml)
140
144