From: Alfredo Deza Date: Thu, 27 Oct 2016 19:29:12 +0000 (-0400) Subject: tests: common basic tests for after installation X-Git-Tag: v2.0~11^2~17 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=757356d57ee7f3dba5eda01294bcd1c8cae7806a;p=ceph-ansible.git tests: common basic tests for after installation Signed-off-by: Alfredo Deza Resolves: pytest#harness --- diff --git a/tests/functional/tests/test_install.py b/tests/functional/tests/test_install.py new file mode 100644 index 000000000..4acaf2496 --- /dev/null +++ b/tests/functional/tests/test_install.py @@ -0,0 +1,10 @@ +import os + + +class TestInstall(object): + + def test_ceph_dir_exists(self): + assert os.path.isdir('/etc/ceph') + + def test_ceph_conf_exists(self): + assert os.path.isfile('/etc/ceph/ceph.conf')