diff options
Diffstat (limited to '')
-rwxr-xr-x | debian/tests/python-ceph | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/debian/tests/python-ceph b/debian/tests/python-ceph new file mode 100755 index 00000000..006dbe63 --- /dev/null +++ b/debian/tests/python-ceph @@ -0,0 +1,7 @@ +#!/usr/bin/python3 + +# Test that rbd and rados can be imported OK +import rbd +import rados + +print("python-ceph: OK") |