(self, filename='form_inputs.html')
| 167 | class TestInput(unittest.TestCase): |
| 168 | |
| 169 | def callFUT(self, filename='form_inputs.html'): |
| 170 | dirname = os.path.join(os.path.dirname(__file__), 'html') |
| 171 | app = DebugApp(form=os.path.join(dirname, filename), show_form=True) |
| 172 | return webtest.TestApp(app) |
| 173 | |
| 174 | def test_input(self): |
| 175 | app = self.callFUT() |
no test coverage detected