diff options
Diffstat (limited to 'test/t/test_filefrag.py')
-rw-r--r-- | test/t/test_filefrag.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/t/test_filefrag.py b/test/t/test_filefrag.py new file mode 100644 index 0000000..342e89c --- /dev/null +++ b/test/t/test_filefrag.py @@ -0,0 +1,11 @@ +import pytest + + +class TestFilefrag: + @pytest.mark.complete("filefrag ") + def test_1(self, completion): + assert completion + + @pytest.mark.complete("filefrag -", require_cmd=True) + def test_2(self, completion): + assert completion |