blob: c8df94c461c325d9c797ac61d2f02cf088a14117 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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"
|