(self)
| 69 | |
| 70 | class TestStreamedYAMLFormatter: |
| 71 | def setup_method(self): |
| 72 | self.args = Namespace(query=None) |
| 73 | self.formatter = StreamedYAMLFormatter(self.args) |
| 74 | self.output = StringIO() |
| 75 | |
| 76 | def test_format_single_response(self): |
| 77 | response = {'TableNames': ['MyTable']} |
nothing calls this directly
no test coverage detected