diff options
Diffstat (limited to 'src/test/python/brag-client/tests')
-rw-r--r-- | src/test/python/brag-client/tests/test_ceph_brag.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/python/brag-client/tests/test_ceph_brag.py b/src/test/python/brag-client/tests/test_ceph_brag.py new file mode 100644 index 00000000..2a584f5a --- /dev/null +++ b/src/test/python/brag-client/tests/test_ceph_brag.py @@ -0,0 +1,10 @@ +import ceph_brag + +# This file tests nothing (yet) except for being able to import ceph_brag +# correctly and thus ensuring somewhat that it will work under different Python +# versions. You must write unittests here so that code has adequate coverage. + +class TestCephBrag(object): + + def test_basic(self): + assert True |