From 757356d57ee7f3dba5eda01294bcd1c8cae7806a Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Thu, 27 Oct 2016 15:29:12 -0400 Subject: [PATCH] tests: common basic tests for after installation Signed-off-by: Alfredo Deza Resolves: pytest#harness --- tests/functional/tests/test_install.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/functional/tests/test_install.py 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') -- 2.39.5