import pytest from conftest import assert_bash_exec @pytest.mark.bashcomp(cmd=None) class TestUnitQuoteReadline: def test_exec(self, bash): assert_bash_exec(bash, "quote_readline '' >/dev/null") def test_env_non_pollution(self, bash): """Test environment non-pollution, detected at teardown.""" assert_bash_exec( bash, "foo() { quote_readline meh >/dev/null; }; foo; unset foo" )