diff options
Diffstat (limited to 'test/t/test_sha256sum.py')
-rw-r--r-- | test/t/test_sha256sum.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/t/test_sha256sum.py b/test/t/test_sha256sum.py new file mode 100644 index 0000000..c8df94c --- /dev/null +++ b/test/t/test_sha256sum.py @@ -0,0 +1,15 @@ +import pytest + + +class TestSha256sum: + @pytest.mark.complete("sha256sum --", require_longopt=True) + def test_options(self, completion): + assert completion + + @pytest.mark.complete("sha256sum ", cwd="sha256sum") + def test_summing(self, completion): + assert completion == "foo" + + @pytest.mark.complete("sha256sum -c ", cwd="sha256sum") + def test_checking(self, completion): + assert completion == "foo.sha256" |