blob: 2a584f5a7b6e3635fcd0f35e7d9ebc8fd65a3edb (
plain)
1
2
3
4
5
6
7
8
9
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
|