Set up test fixtures.
(self)
| 36 | """Test Bdist base class.""" |
| 37 | |
| 38 | def setup_method(self): |
| 39 | """Set up test fixtures.""" |
| 40 | self.distribution = Distribution({ |
| 41 | 'name': 'TestApp', |
| 42 | 'version': '1.0.0', |
| 43 | }) |
| 44 | self.distribution.package_data = {'testapp': ['*.py', '*.kv']} |
| 45 | |
| 46 | @mock.patch('pythonforandroid.bdistapk.ensure_dir') |
| 47 | @mock.patch('pythonforandroid.bdistapk.rmdir') |
nothing calls this directly
no test coverage detected