summaryrefslogtreecommitdiff
path: root/test/t/test_xgamma.py
blob: 56c9440d655642fe365116cde16a6be7419db913 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import pytest


class TestXgamma:
    @pytest.mark.complete("xgamma -")
    def test_1(self, completion):
        assert completion

    @pytest.mark.complete("xgamma -gam")
    def test_2(self, completion):
        assert completion == "-gamma"
        assert completion.endswith(" ")