diff options
Diffstat (limited to 'test/t/test_sbcl.py')
-rw-r--r-- | test/t/test_sbcl.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/t/test_sbcl.py b/test/t/test_sbcl.py new file mode 100644 index 00000000..cce4cba3 --- /dev/null +++ b/test/t/test_sbcl.py @@ -0,0 +1,8 @@ +import pytest + + +class TestSbcl: + @pytest.mark.xfail # TODO: whitespace split issue + @pytest.mark.complete("sbcl shared/default/") + def test_1(self, completion): + assert completion == ["bar", "bar bar.d/", "foo", "foo foo.d/"] |