diff --git a/tests/016-basic-trusty-juno b/tests/016-basic-trusty-juno new file mode 100755 index 00000000..d5de9b14 --- /dev/null +++ b/tests/016-basic-trusty-juno @@ -0,0 +1,11 @@ +#!/usr/bin/python + +"""Amulet tests on a basic ceph-radosgw deployment on trusty-juno.""" + +from basic_deployment import CephRadosGwBasicDeployment + +if __name__ == '__main__': + deployment = CephRadosGwBasicDeployment(series='trusty', + openstack='cloud:trusty-juno', + source='cloud:trusty-updates/juno') + deployment.run_tests() diff --git a/tests/017-basic-trusty-kilo b/tests/017-basic-trusty-kilo new file mode 100755 index 00000000..3335b188 --- /dev/null +++ b/tests/017-basic-trusty-kilo @@ -0,0 +1,11 @@ +#!/usr/bin/python + +"""Amulet tests on a basic ceph-radosgw deployment on trusty-kilo.""" + +from basic_deployment import CephRadosGwBasicDeployment + +if __name__ == '__main__': + deployment = CephRadosGwBasicDeployment(series='trusty', + openstack='cloud:trusty-kilo', + source='cloud:trusty-updates/kilo') + deployment.run_tests() diff --git a/tests/018-basic-utopic-juno b/tests/018-basic-utopic-juno new file mode 100755 index 00000000..4e4f5e59 --- /dev/null +++ b/tests/018-basic-utopic-juno @@ -0,0 +1,9 @@ +#!/usr/bin/python + +"""Amulet tests on a basic ceph-radosgw deployment on utopic-juno.""" + +from basic_deployment import CephRadosGwBasicDeployment + +if __name__ == '__main__': + deployment = CephRadosGwBasicDeployment(series='utopic') + deployment.run_tests() diff --git a/tests/019-basic-vivid-kilo b/tests/019-basic-vivid-kilo new file mode 100755 index 00000000..9238de85 --- /dev/null +++ b/tests/019-basic-vivid-kilo @@ -0,0 +1,9 @@ +#!/usr/bin/python + +"""Amulet tests on a basic ceph-radosgw deployment on vivid-kilo.""" + +from basic_deployment import CephRadosGwBasicDeployment + +if __name__ == '__main__': + deployment = CephRadosGwBasicDeployment(series='vivid') + deployment.run_tests()