~openstack-charmers-archive/charms/trusty/neutron-gateway/trunk

« back to all changes in this revision

Viewing changes to tests/020-basic-trusty-liberty

  • Committer: James Page
  • Date: 2015-10-22 13:23:58 UTC
  • Revision ID: james.page@ubuntu.com-20151022132358-qin1nvlnqn4aezaz
Tags: 15.10
15.10 Charm release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
 
 
3
"""Amulet tests on a basic quantum-gateway deployment on trusty-liberty."""
 
4
 
 
5
from basic_deployment import NeutronGatewayBasicDeployment
 
6
 
 
7
if __name__ == '__main__':
 
8
    deployment = NeutronGatewayBasicDeployment(series='trusty',
 
9
                                               openstack='cloud:trusty-liberty',
 
10
                                               source='cloud:trusty-updates/liberty')
 
11
    deployment.run_tests()