blob: 2a1bf0cf45305c4c41ff7c9a8f6e5a3bf83fd3db (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import pytest
class TestHash:
@pytest.mark.complete("hash ", require_cmd=True)
def test_basic(self, completion):
assert completion
@pytest.mark.complete("hash -", require_cmd=True)
def test_options(self, completion):
assert completion
|