(self)
| 152 | |
| 153 | @force_not_colorized |
| 154 | def test_jsonlines(self): |
| 155 | args = sys.executable, '-m', self.module, '--json-lines' |
| 156 | process = subprocess.run(args, input=self.jsonlines_raw, capture_output=True, text=True, check=True) |
| 157 | self.assertEqual(process.stdout, self.jsonlines_expect) |
| 158 | self.assertEqual(process.stderr, '') |
| 159 | |
| 160 | def test_help_flag(self): |
| 161 | rc, out, err = assert_python_ok('-m', self.module, '-h', |
nothing calls this directly
no test coverage detected