blob: 1f3739eed371ac088eb151f8b17a90b20119cb9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# pylint: disable=missing-module-docstring, missing-function-docstring
import os
import sys
from unittest.mock import patch
import pytest
from pylint import run_epylint, run_pylint, run_pyreverse, run_symilar
@pytest.mark.parametrize(
"runner", [run_pylint, run_epylint, run_pyreverse, run_symilar]
)
def test_runner(runner):
filepath = os.path.abspath(__file__)
testargs = ["", filepath]
with patch.object(sys, "argv", testargs):
with pytest.raises(SystemExit) as err:
runner()
assert err.value.code == 0
|