diff options
| author | Anthony Sottile <asottile@umich.edu> | 2020-01-16 14:06:37 -0800 |
|---|---|---|
| committer | Anthony Sottile <asottile@umich.edu> | 2020-01-16 14:10:33 -0800 |
| commit | 32c7ebcd7b527a70e96906e3d995ab79a5c39464 (patch) | |
| tree | d0c64c175a230767361002e651f631da716c2887 /tests/integration | |
| parent | b56c88fe654af09161a66bf81e00481fa5d2d8c5 (diff) | |
| download | flake8-32c7ebcd7b527a70e96906e3d995ab79a5c39464.tar.gz | |
split lines the same when read from stdin
Diffstat (limited to 'tests/integration')
| -rw-r--r-- | tests/integration/test_main.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/integration/test_main.py b/tests/integration/test_main.py index 42ad76c..9193071 100644 --- a/tests/integration/test_main.py +++ b/tests/integration/test_main.py @@ -51,6 +51,29 @@ index d64ac39..7d943de 100644 assert err == '' +def test_form_feed_line_split(tmpdir, capsys): + """Test that form feed is treated the same for stdin.""" + src = 'x=1\n\f\ny=1\n' + expected_out = '''\ +t.py:1:2: E225 missing whitespace around operator +t.py:3:2: E225 missing whitespace around operator +''' + + with tmpdir.as_cwd(): + tmpdir.join('t.py').write(src) + + with mock.patch.object(utils, 'stdin_get_value', return_value=src): + _call_main(['-', '--stdin-display-name=t.py'], retv=1) + out, err = capsys.readouterr() + assert out == expected_out + assert err == '' + + _call_main(['t.py'], retv=1) + out, err = capsys.readouterr() + assert out == expected_out + assert err == '' + + def test_e101_indent_char_does_not_reset(tmpdir, capsys): """Ensure that E101 with an existing indent_char does not reset it.""" t_py_contents = """\ |
