(self)
| 105 | |
| 106 | class EmptyFileTests: |
| 107 | def test_empty(self): |
| 108 | with open('examples/empty.csv', 'rb') as f, stdin_as_string(f): |
| 109 | utility = self.Utility(getattr(self, 'default_args', [])) |
| 110 | utility.run() |
| 111 | |
| 112 | |
| 113 | class NamesTests: |
nothing calls this directly
no test coverage detected